<!DOCTYPE html>
<html>
<head>
</head>
<body>
<p id="demo"></p>
<input type="button" id="button" value="8"/>
<script>
button.onclick=function(){
document.querySelector("#demo").innerText = document.querySelector("#button").value;
}
</script>
</body>
</html>
我想多次點擊按鈕,所以我可以附加按鈕的值,並得到這樣的輸出8888
而不是隻有一個數字8
這怎麼可能?任何幫助,將不勝感激:)如何啓用多個點擊按鈕?