说道tab选项卡,顾名思义,就是切换不同内容分类,想必学过前端的都知道,tab有很多方法可以实现,最近刚跟师傅学了一种,感觉很简便,很实用哦。
一、先看一下结果
二、可以根据图来布局,首先上面标签和下面内容,
需要注意的是点击上面a标签的链接和下面div的id一一对应起来,
三、就是最重要的js部分了。
这个地方可以分几个阶段去思考
1.首先得有事件去触发点击
2.获取与内容对应a标签的href,这样就可以对下面进行显示或隐藏,
3.通过唯一的class --> active 来切换你想要的内容
四、加上css,这样就差不多完成了
这里根据需求自己定吧,重点在js
五、这样一个简单的小程序差不多就完成了。但是自己写的代码得负责到底,所以测试也是相当重要的,
1.首先,点击的选项会有偏差,所以我们要适当的加些判断,只有点击a标签的时候才能触发
注意:tagname 一定要大写 比如:a 标签
2.还有一个地方需要优化,你会发现,现在在第一个标签上,如果在点击当前的,程序还会执行一遍,虽然你看不到,所一这个最好优化一下
点击的时候先判断一下就好啦。
下面附上我的源码,希望大家一起学习。请大家多多指教,随时留言回复,
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
<!doctype html> <html> <head> <meta charset= "utf-8" > <meta name= "viewport" content= "width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" /> <title>tab选项卡</title> <style type= "text/css" > *{ font-family: simhei; } .tab-group{ padding: 1em 0em; } .tab-group>a{ padding: 1em 2em; color: # 666 ; text-decoration: none; } .tab-group>.active{ padding: 1em 2em; background: # 999 ; color: #fff; } .content-group{ width: 31.7 %; height: 10em; background: # 999 ; color: #fff; } .content-group>.content-item{ display: none; } .content-group>.active{ display: inline-block; } </style> </head> <body> <nav class = "tab-group" > <a href= "item01" rel= "external nofollow" class = "tab-item active" >电脑</a> <a href= "item02" rel= "external nofollow" class = "tab-item" >手机</a> <a href= "item03" rel= "external nofollow" class = "tab-item" >平板</a> </nav> <div class = "content-group" > <div class = "content-item active" id= "item01" >联想</div> <div class = "content-item" id= "item02" >小米</div> <div class = "content-item" id= "item03" >苹果</div> </div> </body> </html> <script type= "text/javascript" > document.queryselector( ".tab-group" ).addeventlistener( 'click' ,function(event){ var target = event.target; //点击选项 if (target.tagname === 'a' && ~target.classname.indexof( 'tab-item' )){ event.preventdefault(); if (~target.classname.indexof( 'active' )){ return ; } var href = target.getattribute( 'href' ); //获取点击的目标标志 //todo 切换选项 var activetab = document.queryselector( ".tab-group>.active" ); activetab.classname = activetab.classname.replace( ' active' , '' ); target.classname = target.classname + ' ' + "active" ; //todo 选项对应的内容切换 var activecontent = document.queryselector( '.content-group>.active' ); activecontent.classlist.remove( 'active' ); var contentelem = document.getelementbyid(href); contentelem.classlist.add( "active" ); } }, false ); </script> |
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持服务器之家!
原文链接:http://www.cnblogs.com/xianxianxxx/p/6398738.html