2

我试图选择相邻之间的所有内容<p>,“p”的数量每次都在变化。p 个标签对之间的内容可能与任何事物无关。像这样的一些事情:

    <p><a href="x">...ABC...</a></p>

    <<<<<<<< Beginning of what I want >>>>>>>>

    <fieldset>...</fieldset>
    <font title="...">...</font>
    sometext without any tag<br>
    <a href="...">...</a>
    //[0..N] more tags

    <<<<<<<< End of what I want >>>>>>>>

    <p><a href="x+1">...ABC...</a></p>
    [0..N] more "p"'s with similar pattern ("p" with random url in "a")

更新:

我想将那些流氓代码(未标记的文本)包装到某个 div 中,以便以后处理它们。像这样:

<div id="outer">
    <div id="1">
        <p><a href="x">...ABC...</a></p>

    <! Beginning of what I want >

        <fieldset>...</fieldset>
        <font title="...">...</font>
        sometext without any tag<br>
        <a href="...">...</a>
        //[0..N] more tags

    <! End of what I want >
    </div>
    <div id="2">
        <p><a href="x+1">...ABC...</a></p>
    </div>
    <div id="3">
        //something or nothing
    </div>
    //something or nothing
</div>

为了做到这一点,我不得不使用这段代码,因为它周围有一些没有任何标签的文本:

    var ps = $("p:contains('ABC')");
    ps.each(function(){
        if(!($(this).next()[0])){
            return true;
        }
        var me = $(this);
        var pa = me.parent().contents();
        var nx = me.next("p:contains('ABC')"); //returns [] in this case
        var i0 = pa.index(me);
        var i1 = pa.index(nx);
        if (i1 > i0) {
            var elements = pa.slice(i0, i1);
            elements.each(function(){
                //Do something
            });
        }
    }); 

正如代码中所标记的,即使我将 next() 函数更改为 next("p"),它也不会返回任何内容。但是如果我使用 me.next().next().next().next().next() 我可以选择下一个“p”标签。为什么会发生这种情况?我怎样才能做得更好?

4

2 回答 2

2

您应该.nextUntil("p")用于此目的!因为 .next() 只检查下一个元素,而 nextUntil() 搜索直到找到关联的元素!

于 2012-12-16T08:48:39.980 回答
1

阅读您的问题后,我得到的是您想要<p>标签中的内容......无论是内容还是 html 标签。如果我错了,请告诉我...

我创建了一个演示小提琴,请看一下。http://jsfiddle.net/dineshswami/YpYWY/1/

更新小提琴:http: //jsfiddle.net/dineshswami/YpYWY/3/

HTML:

<p><a href="x">...ABC...</a></p>


<fieldset>...</fieldset>
<font title="...">...</font>
sometext without any tag<br>
<a href="...">...</a>
//[0..N] more tags

<p><a href="x+1">...ABC...</a></p>

查询:

$("p").contents().unwrap();    

输出:

<a href="x">...ABC...</a>


    <fieldset>...</fieldset>
    <font title="...">...</font>
    sometext without any tag<br>
    <a href="...">...</a>
    //[0..N] more tags

    <a href="x+1">...ABC...</a>
于 2012-12-16T09:00:17.070 回答