我做了一个按钮,但是当我按下按钮时,我想将按钮更改为文本输出。我不想更改按钮内的文本。我想将按钮本身更改为文本。
<input type="button" id="button1" value="See Answer" onclick="check1();">
这是我的按钮。
<script type="text/javascript">
function check1() {
const answer = document.getElementById("question1").innerText;
const mybutton = document.getElementById("button1");
if(answer=="Seoul") mybutton.innerText = "CORRECT"
else mybutton.innerText = "Seoul"
}
</script>
这是我未完成的版本,如果答案正确,则将按钮更改为文本“正确”,如果答案错误,则将按钮更改为文本“首尔”。
哈士奇WWW
ITMISS
一只名叫tom的猫
相关分类