最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Removing comments and text nodes from jQuery collection - Stack Overflow

programmeradmin4浏览0评论
$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 badges
Add a ment  | 

4 Answers 4

Reset to default 8

The 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];
}
发布评论

评论列表(0)

  1. 暂无评论