会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
lijian8887833
博客园
首页
新随笔
联系
订阅
管理
2022年1月5日
双态按钮
摘要: <button>双态按钮</button> □□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□html .down{ background-color: lightcoral; border: 2px solid black; } □□□□□□□□□□□□□
阅读全文
posted @ 2022-01-05 18:32 lijian8887833
阅读(69)
评论(0)
推荐(0)
2022年1月3日
ES6
摘要: 1.块级作用域 关键字let, 常量const let 关键词声明的变量不具备变量提升(hoisting)特性 let 和 const 声明只在最靠近的一个块中(花括号内)有效 当使用常量 const 声明时,请使用大写变量,如:CAPITAL_CASING const 在声明时必须被赋值 2.对象
阅读全文
posted @ 2022-01-03 13:29 lijian8887833
阅读(33)
评论(0)
推荐(0)
ES5
摘要: 1. strict模式 严格模式,限制一些用法,'use strict'; 比如x = 5就会报错; 必须有关键词进行声明 let x = 5 才不会报错 2. Array增加方法 增加了every、some 、forEach、filter 、indexOf、lastIndexOf、isArray、
阅读全文
posted @ 2022-01-03 09:42 lijian8887833
阅读(131)
评论(0)
推荐(0)
公告