摘要: 网页禁止复制并且右键失效: 第一种方法: <script> document.oncontextmenu=new Function("event.returnValue=false"); document.onselectstart=new Function("event.returnValue=f 阅读全文
posted @ 2019-11-23 21:56 吴小明- 阅读(1578) 评论(0) 推荐(0) 编辑
摘要: 概念理解: 数组的解构赋值 对象的解构赋值 字符串的解构赋值 数值和布尔值的解构赋值 函数参数的解构赋值 数组的解构赋值: 一般的: const arr=[1,2,3,4]; let [a,b,c,d]=arr; console.log(a,b,c,d) // 1 2 3 4 复杂点的: const 阅读全文
posted @ 2019-11-23 20:39 吴小明- 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-11-23 14:45 吴小明- 阅读(203) 评论(0) 推荐(0) 编辑