jQuery实现获取元素索引值index的方法

<!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="https://www.jb51.net/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> <h2>点击相应的按钮出现相对应颜色的盒子</h2> <ul> <li>0</li> <li>1</li> <li>2</li> <li>3</li> <li>4</li> </ul> <div>第一个盒子</div> <div>第二个盒子</div> <div>第三个盒子</div> <div>第四个盒子</div> <div>第五个盒子</div> </div> </body> </html>

运行效果图如下:

jQuery实现获取元素索引值index的方法

更多关于jQuery相关内容感兴趣的读者可查看本站专题:《jQuery页面元素操作技巧汇总》、《jQuery扩展技巧总结》、《jQuery常用插件及用法总结》、《jQuery拖拽特效与技巧总结》、《jQuery表格(table)操作技巧汇总》、《jquery中Ajax用法总结》、《jQuery常见经典特效汇总》、《jQuery动画与特效用法总结》及《jquery选择器用法总结

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wzjfgf.html