当前位置:  开发笔记 > 编程语言 > 正文

找到第一个下一个元素,然后停止搜索

如何解决《找到第一个下一个元素,然后停止搜索》经验,为你挑选了1个好方法。

如何使用我的jQuery来选择特定元素之后的第一个元素(非直接)?我有这个清单.

  • Item 1
  • Item 2
  • Item 3
  • Item 4
  • Item 5
  • Item 6
  • Item 7
  • Item 8

如何使用jQuery使用tr current(第3项)选择/操作第一个到来的tr(第5项)?我试过这个.

// This apply background color to the next immediate (Item 4) as its definition.
$('.tr.current').next().css('background-color', '#000');

// This apply to background color all next Items
$('.tr.current').nextAll().css('background-color', '#000');     

// This apply to background color all next Items with class tr (Item 5, Item 7)
$('.tr.current').next('.tr').css('background-color', '#000');       

Milind Anant.. 5

使用.nextAll():first选择:

$('.tr.current').nextAll('.tr:first').css('background-color', '#000');     

  • Item 1
  • Item 2
  • Item 3
  • Item 4
  • Item 5
  • Item 6
  • Item 7
  • Item 8



1> Milind Anant..:

使用.nextAll():first选择:

$('.tr.current').nextAll('.tr:first').css('background-color', '#000');     

  • Item 1
  • Item 2
  • Item 3
  • Item 4
  • Item 5
  • Item 6
  • Item 7
  • Item 8
推荐阅读
地之南_816
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有