04 2021 档案

摘要:1. 设置不同颜色的 border <div class="block"></div> .block { display: inline-block; height: 0; width: 0; border-top: 50px solid yellowgreen; border-bottom: 50 阅读全文
posted @ 2021-04-20 16:48 Mr.曹 阅读(7660) 评论(0) 推荐(0)
摘要:JS 八种数据类型 JS 是动态语言,变量可以随时持有任何类型的数据,所以 JS 的变量是没有数据类型的,值才有数据类型。 JS 值有 8 种数据类型: Boolean: true / false Undefined:没有被赋值的变量或变量被提升时的,都会有个默认值 undefined Null:只 阅读全文
posted @ 2021-04-16 10:28 Mr.曹 阅读(222) 评论(0) 推荐(0)