我想用Javascript和Im構建一個簡單的計算器,清理顯示內容時出現問題。Javascript計算器簡單清除功能不起作用
有人可以看看我的代碼,讓我知道爲什麼它不工作。
爲什麼不將顯示值設置爲空字符串工作。我究竟做錯了什麼?坦克你們。
function testing(button){
var x = button.value;
document.getElementById("display").innerHTML+=x;
}
function clear() {
document.getElementById("display").innerHTML = "";
}
<body>
<input type="button" id="one" value="1" onClick="testing(this)">
<input type="button" id="one" value="2" onClick="testing(this)">
<input type="button" id="one" value="3" onClick="testing(this)">
<input type="button" id="clear" value="clear" onClick="clear()">
<h1 id="display"></h1>
</body>
感謝小費。 – Kingsfull123