gpt4 book ai didi

Javascript隐藏div并显示

转载 作者:行者123 更新时间:2023-11-28 03:42:35 24 4
gpt4 key购买 nike

我正在做一个测验,我想在没有人问的时候隐藏问题。但我不断收到错误 Uncaught TypeError: Cannot read property 'style' of null。

document.getElementById("score").style.display = "none";
<!--This is the questions,score and submit button -->
<div id="score">
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<input type="text" name="textfield" id="textscore">
</div>
</div>
</div>

最佳答案

当您尝试隐藏时,请确保该元素在 DOM 中。

document.onreadystatechange = () => {
if (document.readyState === 'complete') {
// document ready
document.getElementById("score").style.display = "none";
}
}

关于Javascript隐藏div并显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44139554/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com