码迷,mamicode.com
首页 > 其他好文 > 详细

jq写tab切换

时间:2018-02-02 00:56:01      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:gpo   绑定   index   on()   none   设置   move   class   dex   

1 $(‘.index-news-sub-box ul li‘).click(function(){
2     var i=$(this).index();
3     var img=$(‘.index-news-img-box a img‘);
4     img.removeClass(‘z-index-2‘);
5     img.eq(i).addClass(‘z-index-2‘).siblings().removeClass(‘z-index-2‘);
6 });

原理:给某个按钮绑定点击事件;被点击的当前元素显示(可以设置display:block;也可以设置z-index:1;),其他的兄弟元素隐藏(可以设置display:none;也可以设置z-index:0;).

前提:按钮个数和被切换的内容区的个数相等,且按钮要有想同的标识(class,id,或标签),内容区同理。

jq写tab切换

标签:gpo   绑定   index   on()   none   设置   move   class   dex   

原文地址:https://www.cnblogs.com/candy-Yao/p/8401637.html

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