代码之家  ›  专栏  ›  技术社区  ›  travis

如何判断jQuery节点是否位于其父节点的开头?

  •  1
  • travis  · 技术社区  · 15 年前

    给定以下HTML:

    <p><img id="one" alt="at beginning, return true" />Some Text</p>
    <p>Some <img id="two" alt="in middle, return false" />Text</p>
    <p>Some Text<img id="three" alt="at end, return false" /></p>
    

    我怎么知道呢 $("img#one")

    $("p>img").each(function () {
        var $this = $(this);
        var $parent = $this.parent();
        if ("$this is at the beginning of $parent.html()") {
            $parent.before($this);
        } else {
            $parent.after($this);
        }
    });
    

    编辑: 具有 sebasgo's help

    $("p>img").each(function () {
        var $this = $(this);
        var $parent = $this.parent();
        if (this == this.parentNode.firstChild) {
            $parent.before($this);
        } else {
            $parent.after($this);
        }
    });
    
    <img id="one" alt="at beginning, return true" />
    <p>Some Text</p>
    <p>Some Text</p>
    <img id="two" alt="in middle, return false" />
    <p>Some Text</p>
    <img id="three" alt="at end, return false" />
    
    4 回复  |  直到 7 年前
        1
  •  2
  •   sebasgo    15 年前

    var elem = $("img#one").get(0)
    if (elem.parentNode.firstChild == elem)
    { .... }
    

    希望这个效果更好。

        2
  •  2
  •   chrismacp    14 年前

    下面的代码将告诉您所讨论的节点是否为“第一个子节点”,因此应该适合您。我刚刚遇到了一个类似的问题,这对我很有效。

    if($(this).prev().length)
    {
        // Not first-child
    } else {
        // is first-child
    }
    
        3
  •  0
  •   Andreas Grech    15 年前

    尝试以下条件:

    ($parent.contents().eq(0).attr("id") === $this.attr("id"))
    
        4
  •  0
  •   Community CDub    7 年前

    从类似的问题开始。

    How to match first child of an element only if it's not preceeded by a text node?

    $("p>img").each(function () {
        var prev = this.previousSibling;
        var isThisTheFirstNode = $(this).parent().html().toUpperCase().indexOf('<IMG>') == 0;
    
        var method = isThisTheFirstNode ? 'before' : 'after';
        $(this).parent[method].before(this);
    });