2 回答

TA貢獻(xiàn)1804條經(jīng)驗(yàn) 獲得超3個(gè)贊
你忘了在休假時(shí)切換開(kāi)關(guān)...
window.onload = function(){
var button = document.getElementById("button");
button.addEventListener("mouseenter", function(){
button.classList.remove("bnative1");
button.classList.add("buttonclass1");
});
button.addEventListener("mouseleave", function(){
button.classList.remove("buttonclass1");
button.classList.add("bnative1");
})
}

TA貢獻(xiàn)1860條經(jīng)驗(yàn) 獲得超8個(gè)贊
或者,如果您想要的只是添加顏色,則可以使用純 css 來(lái)完成此操作。
.hover-bg-blue:hover {
background-color: blue;
color: white;
}
<button class="hover-bg-blue">Hello</button>
- 2 回答
- 0 關(guān)注
- 175 瀏覽
添加回答
舉報(bào)