码迷,mamicode.com
首页 > Web开发 > 详细

jquery获取元素索引

时间:2014-11-26 11:07:30      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   sp   strong   on   

昨个项目中遇到的问题,想获取指定td在该行tr中可见列的索引;

由于改行tr下有隐藏元素,取索引的时候直接用 $([‘td[name="operation"]‘).index() 取到的值肯定是不正确的;

查了一下资料,复习了下 index([selector|element]) 的用法。

现举例结合实际分享下。

先上效果图:

bubuko.com,布布扣

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

用几种不同的方式获取索引:

  • 取#bar在ol下li中的索引: $("#bar").index();           // 输出0 
  • 取#bar在所有li中的索引: $("#bar").index("li");            // 输出4 
  • 取#bar在所有可见li中的索引: $("li:visible").index($("#bar"));            // 输出3 

jquery获取元素索引

标签:style   blog   http   io   ar   color   sp   strong   on   

原文地址:http://www.cnblogs.com/yuguilin/p/4122632.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!