摘要:
阅读全文
摘要:
... 阅读全文
摘要:
阅读全文
摘要:
阅读全文
摘要:
draggable 属性规定元素是否可拖动(HTML5 新增)语法:<element draggable="true|false|auto">true //规定元素是可拖动的。false //规定元素是不可拖动的。auto //使用浏览器的默认特性。 阅读全文
摘要:
1.let, const 都是块级作用域,其有效范围仅在代码块中。 //es5 if(a==1){ var b = 'xxx'; } console.log(b);//xxx //es6 if(a==1){ let b = 'xxx'; } console.log(b);//undefined ---------------------------------------- const... 阅读全文