第二章
2019-01-06 本文已影响0人
Ahungrynoob
一个未定义行为的例子
button.addEventListener("mousedown",function(e){
event.preventDefault();
})
button:active{ background-color:red };
FF浏览器:active样式阵亡了,鼠标按下去无效,因为FF认为:active发生在mousedown事件之后。
一个未定义行为的例子
button.addEventListener("mousedown",function(e){
event.preventDefault();
})
button:active{ background-color:red };
FF浏览器:active样式阵亡了,鼠标按下去无效,因为FF认为:active发生在mousedown事件之后。