gpt4 book ai didi

javascript - 通过 jQuery 访问 DOM 元素

转载 作者:太空狗 更新时间:2023-10-29 15:42:21 25 4
gpt4 key购买 nike

假设我的代码段中有以下 DOM 元素:

<div id="test">
<div id="t2">
Hi I am
<b>Gopi</b>
and am 20 years old.
<p id="div2">
<button onclick="alert('lol')">Check</button>
</p>
</div>
</div>

假设我想遍历 div#t2 的内容。

$("#t2").children()给我 <b><p>标签。

那么我应该如何访问它以获取包含“Hi I am”、“<b>....</b>”、“and am 20 years old.”、“<p>.....</p>”的数组的值 ??

最佳答案

使用原生 DOM Node :

$('#t2')[0].childNodes

给你你想要的数组。

您可能希望在使用 $.trim 之前 trim 条目也是因为实际的文本节点包含 HTML 中的所有空白。

关于javascript - 通过 jQuery 访问 DOM 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10885937/

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