innerHtml 不适用于嵌套 div 标签
我无法将 .innerHtml 替换为嵌套在其他 div 标签中的 div 标签。我使用 firebug 来确保 getElementById() 正常工作。
<div class="a">
<div class="b"><a href="myUrl"><div id="hello"></div></a></div>
</div>
在我使用的javascript代码中:
document.getElementById("hello").innerHTML = "hello world";
使用firebug,我已经验证了“hello”div被拾取(也就是说,它不为空)。但字符串“hello world”没有显示。 请帮忙。 谢谢。
I am not able to replace .innerHtml for a div tag which is nested in other div tags. I used firebug to make sure that getElementById() is working.
<div class="a">
<div class="b"><a href="myUrl"><div id="hello"></div></a></div>
</div>
In javascript code I am using:
document.getElementById("hello").innerHTML = "hello world";
Using firebug, I have verified that "hello" div is picked up (that is, it is not null). But the string "hello world" is not showing up.
Kindly help.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
innerHTML
而不是innerHtml
。注意大小写。另外,IE 还支持
innerText
。use
innerHTML
rather thaninnerHtml
. note the capitalization.On a side note, IE also supports
innerText
.您提供的示例对我有用...所以,我认为您应该确保在 DOM 中创建元素后执行脚本。
例如,将 script 元素放置在要添加内容的 div 之后。
因此,如果这解决了问题,那么您应该向窗口的 onload 事件添加一个事件侦听器,该事件将运行所有脚本。
正如 Amaan 所说,不要将 div 元素放置在 a 元素内。
The example you provided works for me... so, I think you should make sure that the script is executed after the element has been created in the DOM.
For example, place the script element after the div you want to add contents to.
So if this fixes the issue, then you should add an event listener to the window’s onload event which will run all scripts.
And as Amaan said, don’t place a div element inside an a element.