admin管理员组文章数量:1350105
$html = $("<!-- ment --> <p>text</p>");
creates a jQuery collection like so
$( [the ment], [text node], p )
How can I access the paragraph only? .find("p") returns an empty collection
And, for extra points,
$html = $("<p>text</p>");
creates a jQuery collection like so
$( p )
Is there a fail safe way to get at the p, and only the p, that works whether the ment is there or not?
$html = $("<!-- ment --> <p>text</p>");
creates a jQuery collection like so
$( [the ment], [text node], p )
How can I access the paragraph only? .find("p") returns an empty collection
And, for extra points,
$html = $("<p>text</p>");
creates a jQuery collection like so
$( p )
Is there a fail safe way to get at the p, and only the p, that works whether the ment is there or not?
Share Improve this question asked Oct 19, 2011 at 10:15 wheresrhyswheresrhys 23.6k21 gold badges96 silver badges165 bronze badges4 Answers
Reset to default 8The simplest way is with filter
and the universal selector *
, which matches all elements.
$html = $("<!-- ment --> <p>text</p>").filter('*');
var p = $html.filter(function() { return this.nodeType === 1; });
jsFiddle.
Try this demo. Maybe this is not exactly how you're gonna use it, but you get the point.
<div class="text">
<!-- ment -->
<p>text</p>
</div>
var html = $('.text').html();
html = $.trim(html.replace(/<!--(.*?)-->/ig, ''));
alert(html);
One way is to get by index like in $html = $("<!-- ment --> <p>text</p>");
you can get p tag using $($html[2])
.
OR
$html = $("<!-- ment --> <p>text</p>");
$target = new Object();
for(key in $html){
if(typeof $html[key] === 'object' && $html[key].localName === 'p')
$target = $html[key];
}
本文标签: javascriptRemoving comments and text nodes from jQuery collectionStack Overflow
版权声明:本文标题:javascript - Removing comments and text nodes from jQuery collection - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743870512a2553383.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论