代码之家  ›  专栏  ›  技术社区  ›  Lance McNearney

在链中引用当前jquery对象?

  •  2
  • Lance McNearney  · 技术社区  · 14 年前

    去年在sf的devdays上(jquery 1.4发布之前),我想他们提到了1.4中即将推出的一个特性,它允许您在链中引用当前的jquery对象。我已经看完了所有1.4的改进,但找不到。有人知道怎么做吗?

    例子

    当使用与当前对象相关的方法时,能够访问当前jquery对象会很有帮助,例如.next():

    // Current way
    var items = $(this).closest('tr');
    items = items.add(items.next(':not([id])'));
    
    // Magical 1.4 way? Is there a "chain"-like object?
    var items = $(this).closest('tr')
        .add(chain.next(':not([id])'));
    
    2 回复  |  直到 14 年前
        1
  •  4
  •   Nick Craver    14 年前

    我想这是最接近的 .andSelf() :

    var items = $(this).closest('tr').next(':not([id])').andSelf();
    

    这是给 .next() 呼叫,但随后添加 tr 回去吧。所有内容都在发生链的上下文中,因此要么跳来跳去添加元素,要么按现有的方式存储原始引用。以下是跳转的有用功能: http://api.jquery.com/category/traversing/miscellaneous-traversal/

    John Resig posted this concept a while back ,但据我所知,没有比这更接近的东西使它成为jquery核心。但是,如果需要,可以使用博客上发布的代码。

        2
  •  1
  •   Zach    14 年前

    可能 andSelf() http://api.jquery.com/andSelf/ 这将返回上一个选择,但随后必须对所有内容使用:not([id])。