摘要: 浅拷贝(Shallow Copy): 浅拷贝创建一个新对象,但是这个新对象的属性值是指向原始对象属性值的引用。 对于对象属性是基本数据类型的,浅拷贝会复制其值。 对于对象属性是对象(或数组)的,浅拷贝只复制引用,而不复制对象本身。 深拷贝(Deep Copy): 深拷贝创建一个新对象,并且递归地复制 阅读全文
posted @ 2024-09-10 20:55 雨下大了没 阅读(4) 评论(0) 推荐(0) 编辑
摘要: let data = item.status == 0 ? '内容1' : item.status == 1 ? '内容2' : '其他的内容' 阅读全文
posted @ 2022-05-26 10:32 雨下大了没 阅读(31) 评论(0) 推荐(0) 编辑
摘要: // 定义一个数组 let arr = [[1, 2, 3], [7, 0, 5], [6, 9, 8]]; // 输出结果 console.log([...new Set(arr.flat(Infinity))].sort()) // [0, 1, 2, 3, 5, 6, 7, 8, 9] // 阅读全文
posted @ 2021-12-13 15:04 雨下大了没 阅读(151) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2019-07-09 10:16 雨下大了没 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 在控制台输入: document.designMode = "on" 可直接编写当前网页。 阅读全文
posted @ 2019-06-12 15:49 雨下大了没 阅读(96) 评论(0) 推荐(0) 编辑
摘要: encodeURI方法不会对下列字符编码 ASCII字母、数字、~!@#$&*()=:/,;?+' encodeURIComponent方法不会对下列字符编码 ASCII字母、数字、~!*()' 所以encodeURIComponent比encodeURI编码的范围更大。 实际例子来说,encodeURIComponent会把 http:// 编码成 http%3A%2F%2F 而enco... 阅读全文
posted @ 2019-05-27 09:45 雨下大了没 阅读(162) 评论(0) 推荐(0) 编辑
摘要: <script> function Rem() { var docEl = document.documentElement, oSize = docEl.clientWidth / 7.5; if (oSize > 100) { oSize = 100; // 限制rem值 640 / 6.4 = 阅读全文
posted @ 2019-05-23 15:49 雨下大了没 阅读(645) 评论(0) 推荐(0) 编辑
摘要: <head> <script src="path/to/vconsole.min.js"></script> <script> var vConsole = new VConsole(); </script> </head> CDN地址:https://www.bootcdn.cn/vConsole 阅读全文
posted @ 2019-05-21 18:32 雨下大了没 阅读(1171) 评论(0) 推荐(0) 编辑
摘要: 使用vue-video-player在移动端微信内置浏览器打开,点击视频自动全屏问题。 参考官方 API 是 H5 同层浏览器的原因,可通过设置video属性来处理。 阅读全文
posted @ 2019-05-17 10:49 雨下大了没 阅读(1060) 评论(0) 推荐(1) 编辑
摘要: 记录,方便以后工作查阅 作者:左手121 来源:CSDN 原文: https://blog.csdn.net/qq_20282263/article/details/80859589 基本配置 git config --global user.name "name" : 配置用户名git confi 阅读全文
posted @ 2019-03-27 15:39 雨下大了没 阅读(231) 评论(0) 推荐(0) 编辑