如何使內聯css更改顏色或輸入按鈕的圖像onclick?Onclick從內聯css和JavaScript更改按鈕圖像
<div><input type="button" id="btn" style="background-image:url('old.png');width:36px;height:36px;" onclick="change();"></div>
function change() {
document.getElementById("btn").style.backgroundImage=url('new.png');
}
如何使用JavaScript來完成此操作?我錯過了一些...
或者是否有可能是一個HTML或CSS的解決方案更容易?
你需要在你的函數的document.getElementById(「BTN」)添加引號style.backgroundImage =「URL(‘new.png’)」。 – pconnor88