我有一個帶有提交按鈕的表單,並希望在單擊時更改該按鈕的顏色。事件監聽器更改按鈕
我在HTML試過這樣:
const myButton = document.getElementById("submitButton");
myButton.addEventListener("submit", function() {
myButton.style = "background:blue"
})
<div>
<form id="connexion">
<input type="text" placeholder="Pseudo" />
<button id="submitButton" type="submit" value="Go" style="background:yellow"></button>
</form>
</div>
它不工作。 你能告訴我問題在哪裏嗎?
謝謝
按鈕沒有'submit'事件,表單可以。 – zzzzBov