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

js获取标签下标

时间:2017-11-23 19:39:50      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:inpu   body   function   button   sele   targe   index   alert   value   

<body>
<div class="titTab">
    <span></span>
    <span></span>
    <span class="select"></span>
</div>

<input type="button" value="获取下标" class="target"/>
</body>
$(".target").click(function(){
    //方法一 注意空格与非空格
    var index = $(‘.titTab span.select‘).index();
    //方法二
    //var index = $(‘.titTab .select‘).index();
    alert("index:"+index);//弹出index:2
});

 

js获取标签下标

标签:inpu   body   function   button   sele   targe   index   alert   value   

原文地址:http://www.cnblogs.com/yinyl/p/7885579.html

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