這裏,我想分別在按鈕被單擊時在div1上打印「hi」或「hello」。使用javascript在同一個div上調用方法的兩個按鈕
<buton onclick="abc('hi')"></button>
<button onclick="abc('hello')"></button>
<div id="div1"></div>
<script>
abc(text){
document.getElementById("div1").innerHTML = text;
}
</script>
注:無論是 「喜」 或 「你好」 上DIV1
學會正確使用引號(鳥巢引號),即'的onclick = 「ABC( '你好')」'和'的getElementById(」 div1「)' – Satpal
請不要根據意見/建議更新問題。這會使他們無用。我花了一段時間才明白,你已經根據Satpal的建議更新了問題 – Rajesh
在回答之前請注意注意事項。 –