JS基础入门(36)——面向对象(三)
时间:2023-03-31 11:43:50
CSS
<脚本>varbox=document.getElementById("box");//创建自定义属性varc=newCustomEvent("abc",{bubbles:true});//自定义属性绑定box.addEventListener("abc",function(){console.log(1);});box.addEventListener("abc",function(){console.log(2);});//自定义属性触发box.dispatchEvent(c,"abc");