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