innerHtml 不适用于嵌套 div 标签

发布于 2024-12-09 05:28:46 字数 442 浏览 0 评论 0原文

我无法将 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

掩饰不了的爱 2024-12-16 05:28:46

使用 innerHTML 而不是 innerHtml。注意大小写。

另外,IE 还支持 innerText

use innerHTML rather than innerHtml. note the capitalization.

On a side note, IE also supports innerText.

夜雨飘雪 2024-12-16 05:28:46

您提供的示例对我有用...所以,我认为您应该确保在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文