如何将值写入DOM中的文本节点?

发布于 2025-01-03 10:44:12 字数 372 浏览 0 评论 0原文

<div><p></p></div>

我发现当放入 时

$('div')[0].childNodes

它会将文本节点 分成 2 个文本节点,

#=>[textnode,<p></p>,textnode]

如果我想将文本“这是文本节点 3”写入最后一个子节点,

如下所示: ('div')[0].childNodes[2].value = '这是文本节点 3'

但 value 属性在这里不起作用。我该怎么做?

<div><p></p></div>

I found when put

in ,

$('div')[0].childNodes

it split the text node of into 2 text nodes,

#=>[textnode,<p></p>,textnode]

if I want write the text 'this is text node 3' into the last child node,

something like:
('div')[0].childNodes[2].value = 'this is text node 3'

but value property doesn't work here.how can I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

女皇必胜 2025-01-10 10:44:12

不要使用 .value,请尝试以下操作,如果有效,请给我们反馈。

$('div')[0].childNodes[2].innerHTML = 'this is text node 3';

Instead of using .value try this the following, and give us feedback if it works.

$('div')[0].childNodes[2].innerHTML = 'this is text node 3';
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文