js写一个选项卡

JavaScript013

js写一个选项卡,第1张

第一步,当然是先写html代码和css样式

<!DOCTYPE html>

<html>

<head>

<meta charset="gb2312" />

<title>无标题文档</title>

<style>

body,ul,li{margin:0 padding:0 font:12px/1.5 arial}

ul,li{list-style:none}

.wrap{width:500px margin:20px auto}

.hide{display:none}

#tab_t{height:25pxborder-bottom:1px solid #ccc}

#tab_t li{float:left width:80px height:24px line-height:24px margin:0 4px text-align:center border:1px solid #ccc border-bottom:none background:#f5f5f5 cursor:pointer}

#tab_t .act{ position:relative height:25px margin-bottom:-1px background:#fff}

#tab_c{border:1px solid #ccc border-top:none padding:20px}

</style>

</head>

<body>

<div class="wrap">

<ul id="tab_t">

<li class="act">选择1</li>

<li>选择2</li>

<li>选择3</li>

<li>选择4</li>

</ul>

<div id="tab_c">

<div>内容1</div>

<div class="hide">内容2</div>

<div class="hide">内容3</div>

<div class="hide">内容4</div>

</div>

</div>  

</body>

</html>

第二步,实现简单的切换效果

要点1:abc.document.getElementsByTagName("li"):取得abc下面的所有标签为li的元素,返回的是一个元素集合,有数组的一些属性。

要点2:循环,先循环给li加上onclick事件,再onlink事件点击的时候,再循环让所有选项卡的act样式去掉,所有的内容隐藏。然后让所点击的选项及对应内容显示。

要点3:tab_t_li[i].index = i在循环时,给选项卡加一个额外的属性并赋值,以做选项卡和内容的对应。

<!DOCTYPE html>

<html>

<head>

<meta charset="gb2312" />

<title>无标题文档</title>

<style>

body,ul,li{margin:0 padding:0 font:12px/1.5 arial}

ul,li{list-style:none}

.wrap{width:500px margin:20px auto}

.hide{display:none}

#tab_t{height:25pxborder-bottom:1px solid #ccc}

#tab_t li{float:left width:80px height:24px line-height:24px margin:0 4px text-align:center border:1px solid #ccc border-bottom:none background:#f5f5f5 cursor:pointer}

#tab_t .act{ position:relative height:25px margin-bottom:-1px background:#fff}

#tab_c{border:1px solid #ccc border-top:none padding:20px}

</style>

<script>

window.onload = function(){

var tab_t = document.getElementById("tab_t")

var tab_t_li = tab_t.getElementsByTagName("li")

var tab_c = document.getElementById("tab_c")

var tab_c_li = tab_c.getElementsByTagName("div")

var len = tab_t_li.length

var i=0

for(i=0 i<len i++){

tab_t_li[i].index = i

tab_t_li[i].onclick = function(){

for(i=0 i<len i++){

tab_t_li[i].className = ''

tab_c_li[i].className = 'hide'

}

tab_t_li[this.index].className = 'act'

tab_c_li[this.index].className = ''

}

}

}

</script>

</head>

<body>

<div class="wrap">

<ul id="tab_t">

<li class="act">选择1</li>

<li>选择2</li>

<li>选择3</li>

<li>选择4</li>

</ul>

<div id="tab_c">

<div>内容1</div>

<div class="hide">内容2</div>

<div class="hide">内容3</div>

<div class="hide">内容4</div>

</div>

</div>  

</body>

</html>

第三步,写成函数。上面的写法只能一个页面用一个选项卡,如果再加一个的话,就需要复制一份,再改很多变量名。

要点:tab_t_li[i][evt] 因为传值的时候是字符串,如果直接写的话就是tab_t_li[i]."onclick"这样话是执行不了的,tab_t_li["onclick"]这样执行没问题。

好了,现在一个页面上就可以有多个切换了,只需要调用函数的时候,写上相应的id名和标签名,事件名称就可以了

<!DOCTYPE html>

<html>

<head>

<meta charset="gb2312" />

<title>无标题文档</title>

<style>

body,ul,li{margin:0 padding:0 font:12px/1.5 arial}

ul,li{list-style:none}

.wrap{width:500px margin:20px auto}

.hide{display:none}

#tab_t{height:25pxborder-bottom:1px solid #ccc}

#tab_t li{float:left width:80px height:24px line-height:24px margin:0 4px text-align:center border:1px solid #ccc border-bottom:none background:#f5f5f5 cursor:pointer}

#tab_t .act{ position:relative height:25px margin-bottom:-1px background:#fff}

#tab_c{border:1px solid #ccc border-top:none padding:20px}

</style>

<script>

window.onload = function(){

tab("tab_t","li","tab_c","div","onmouseover")

function tab(tab_t,tab_t_tag,tab_c,tag_c_tag,evt){

var tab_t = document.getElementById(tab_t)

var tab_t_li = tab_t.getElementsByTagName(tab_t_tag)

var tab_c = document.getElementById(tab_c)

var tab_c_li = tab_c.getElementsByTagName(tag_c_tag)

var len = tab_t_li.length

var i=0

for(i=0 i<len i++){

tab_t_li[i].index = i

tab_t_li[i][evt] = function(){

for(i=0 i<len i++){

tab_t_li[i].className = ''

tab_c_li[i].className = 'hide'

}

tab_t_li[this.index].className = 'act'

tab_c_li[this.index].className = ''

}

}

}

}

</script>

</head>

<body>

<div class="wrap">

<ul id="tab_t">

<li class="act">选择1</li>

<li>选择2</li>

<li>选择3</li>

<li>选择4</li>

</ul>

<div id="tab_c">

<div>内容1</div>

<div class="hide">内容2</div>

<div class="hide">内容3</div>

<div class="hide">内容4</div>

</div>

</div>  

</body>

</html>

给你个模拟的代码。自己看懂后,再修改。

布局的事,自己搞定吧

<style>    

input.active { background:yellow }    

div { display:none width:300px height:200px border:1px solid #000 }    

div.active { display:block }    

</style>    

<script>    

window.onload=function (){    

var aBtn=document.getElementsByTagName('input')    

var aDiv=document.getElementsByTagName('div')    

for (var i=0 i<aBtn.length i++)    

{    

// 设置下标    

aBtn[i].index=i     

aBtn[i].onclick=function (){    

// 清    

for (var i=0 i<aBtn.length i++)    

{    

aBtn[i].className=''    

aDiv[i].className=''    

}      

// 当前加    

this.className='active'

// 获取当前下标    

var n=this.index    

aDiv[n].className='active'    

}    

}    

}    

</script>    

</head>    

<body>    

<input type="button" value="111" class="active" />    

<input type="button" value="222" />    

<input type="button" value="333" />    

<div class="active">111</div>    

<div>222</div>    

<div>333</div>    

</body>