摘要: 在input框内也可以用iconfont图标 <input type="text" class="iconfont " placeholder="&#xe62d; 请输入宿舍信息"> 阅读全文
posted @ 2023-09-13 14:39 饼MIN 阅读(26) 评论(0) 推荐(0)
摘要: 利用排他思想的案例 let building = document.querySelector("aside") /* 排他思想 */ for(let i = 0 ;i<building.children.length;i++){ building.children[i].onclick = fun 阅读全文
posted @ 2023-09-13 14:20 饼MIN 阅读(15) 评论(0) 推荐(0)
摘要: for in与for of的区别 使用for of遍历的内容必须要有迭代器 for in一般用于遍历对象也可以遍历数组,遍历的是对象的属性或者数组的下标,for of一般用于遍历数组,map,set等,它不能遍历对象 因为对象身上没有迭代器 for in一般遍历的是key,for of一般遍历的是v 阅读全文
posted @ 2023-09-13 13:09 饼MIN 阅读(69) 评论(0) 推荐(0)