gpt4 book ai didi

jquery - 选择带有文本内容的元素?

转载 作者:太空宇宙 更新时间:2023-11-03 22:04:30 25 4
gpt4 key购买 nike

我想选择所有带有直接文本内容的元素。所以给定文件

<div>
<h1>Hi</h1>
<article>
<p>blah balah blah</p>
<p>blah blahrg blarg</p>
</article>
<footer></footer>
</div>

我想选择 h1 和 p 元素(总共 3 个元素)。有没有简单的方法可以做到这一点?

最佳答案

(function(){
var ignoredNodes = {
"script" : true,
"noscript" : true
};

jQuery("*", "body").filter(
function(){
var c;

if( this.nodeName.toLowerCase() in ignoredNodes ) {
return false;
}

c = this.firstChild;

return c && c.nodeType === 3 && jQuery.trim(c.data);
}
);

//[<h1>Hi</h1>, <p>blah balah blah</p>, <p>blah blahrg blarg</p>]
})()

关于jquery - 选择带有文本内容的元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7787975/

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