温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

jquery获取元素索引值的index方法

发布时间:2020-07-23 15:17:25 来源:网络 阅读:7245 作者:lflianglan 栏目:web开发

jquery中获取元素索引值的方法为:如:alert($("#btn li").index(this));

这个意思是说:搜索与参数表示的对象匹配的元素,并返回相应元素的索引值。如果找到了匹配的元素,从0开始返回;如果没有找到匹配的元素,返回-1。

实例:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>jquery获取索引值</title>
<style type="text/css">
    *{margin:0; padding:0;}
    ul,li{list-style:none;}
    #wrap{width:980px; height:500px; overflow:hidden; margin:0 auto;}
    ul{width:200px; height:500px; float:left;}
    ul li{width:200px; height:100px; line-height:100px; text-align:center; font-size:16px; cursor:pointer;}
    #wrap div{width:700px; height:500px; float:right;}
    #btn0,.box0{background:#933;}
    #btn1,.box1{background:#09F;}
    #btn2,.box2{background:#93F;}
    #btn3,.box3{background:#F66;}
    #btn4,.box4{background:#3C0;}
    .box2,.box3,.box1,.box4{display:none;}
    #btn0.current,#btn1.current,#btn2.current,#btn3.current,#btn4.current{border:1px solid #000;}
</style>
<script type="text/javascript" src="jquery-1.7.2.min.js"></script>
<script type="text/javascript">
    $(function(){
        $("#btn li").click(function(){
            $(this).addClass("current").siblings().removeClass("current");
            var n=$("#btn li").index(this);
            $(".box"+n).show().siblings("div").hide();
        })
    })
</script>
</head>
<body>
    <div id="wrap">
        <h3>点击相应的按钮出现相对应颜色的盒子</h3>
        <ul id="btn">
            <li id="btn0" class="current">0</li>
            <li id="btn1">1</li>
            <li id="btn2">2</li>
            <li id="btn3">3</li>
            <li id="btn4">4</li>
        </ul>
        <div class="box0">第一个盒子</div>
        <div class="box1">第二个盒子</div>
        <div class="box2">第三个盒子</div>
        <div class="box3">第四个盒子</div>
        <div class="box4">第五个盒子</div>
    </div>
</body>
</html>


向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI