我不明白为什么,但是这个简单的代码没有给我任何回应
:
function funcs() {
document.getElementById("big").display = "none";
}
<p id="big"> I am big</p>
<button onclick="funcs()">dissapear</button>
这应该使单击按钮时ID为
big
的段落消失。 最佳答案
您必须在此处添加style
:
document.getElementById("big").style.display="none";
关于javascript - 没有JavaScript回应,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51320861/