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 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];
}

本文标签: javascriptRemoving comments and text nodes from jQuery collectionStack Overflow