摘要: 该属性 是html5新增的,兼容性不好。是真的很好用。操作方法极其类似数组。 <div id="ant" class="a b">蚂蚁部落</div> //js let odiv = document.getElementById("ant"); //追加类名aaa odiv.classList.a 阅读全文
posted @ 2020-06-05 16:45 麦子同学 阅读(416) 评论(0) 推荐(0) 编辑
摘要: querySelector--只获取1个 //举例 document.querySelector(".wrap") document.querySelector("#wrap") document.querySelector("div") document.querySelector(".wrap 阅读全文
posted @ 2020-06-05 16:02 麦子同学 阅读(2335) 评论(0) 推荐(0) 编辑
摘要: addEventListener:只支持ie9以上版本;attachEvent:支持ie8以下版本。 attachEvent和addEventLitener的不同之处是第二个参数事件名要多加个“on” //兼容ie 低版本 function addEvent(domNode, eventType, 阅读全文
posted @ 2020-06-05 15:28 麦子同学 阅读(546) 评论(0) 推荐(0) 编辑