分类

链接

2011 年 10 月
 12
3456789
10111213141516
17181920212223
24252627282930
31  

近期文章

热门标签

新人福利,免费薅羊毛

现在位置:    首页 > Others > 正文
共享办公室出租
JQUERY中INDEX使用要注意的地方
Others 暂无评论 阅读(2,021)

JQUERY中INDEX使用要注意的地方

定义:

  $("#id").index(obj)返回int类型

 

=========Demo===============

HTML:

<table id="tb">

  <tr id="tr">

    <td><span onclick="GetPos(this)">0</span></td>

    <td><span onclick="GetPos(this)">1</span></td>

    <td><span onclick="GetPos(this)">2</span></td>

    <td><span onclick="GetPos(this)">3</span></td>

  </tr>

JS:

  function GetPos(item){

    var clickItem=$(item);

    var pos = $("#tb tr") .eq(0).find("td").index(clickItem);//var pos = $("#tr td").index(clickItem);

    alert(pos);

  }

 

  错误写法:

        var pos = $("#tb tr") .eq(0).index(clickItem);

      or

      var pos = $("#tr").index(clickItem);

 

  注意:

    index的父元素是一个集合!!!

 

 

.....................................................................OVER

============ 欢迎各位老板打赏~ ===========

本文版权归Bruce's Blog所有,转载引用请完整注明以下信息:
本文作者:Bruce
本文地址:JQUERY中INDEX使用要注意的地方 | Bruce's Blog

发表评论

留言无头像?