摘要:
输入一个值,返回其数据类型 function type(para) { return Object.prototype.toString.call(para) } 数组去重 // 方法一 function unique1(arr) { return [...new Set(arr)] } // 方法 阅读全文
摘要:
鼠标在元素上移进移出事件 <body> <img class="viewImg" src="./1.jpg" alt=""> </body> <script> // 获取到所有图片 let imags = document.querySelectorAll(".viewImg"); // 循环添加鼠 阅读全文