gpt4 book ai didi

Javascript、getElementById 和样式不起作用 : Uncaught TypeError: Cannot read property 'style' of null

转载 作者:行者123 更新时间:2023-11-28 09:18:47 25 4
gpt4 key购买 nike

我这里有这段代码:

document.getElementById('success').style.display("block");
document.getElementById('success').text("aaaa");

我收到这个错误,为什么?

Uncaught TypeError: Cannot read property 'style' of null 

<span id="success" style="color:#FFF; display:none;"></span>

我将我的代码移到了页面底部,现在我收到了这个新错误

Uncaught TypeError: Property 'display' of object #<CSSStyleDeclaration> is not a function

最佳答案

应该是:

var elSuccess = document.getElementById('success');
elSuccess.style.display = 'block';
elSuccess.innerText = 'aaa';

关于Javascript、getElementById 和样式不起作用 : Uncaught TypeError: Cannot read property 'style' of null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19417866/

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