选项卡
Posted Mr_W
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了选项卡相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>选项卡</title> <style type="text/css"> input{background: white;} .active{background: yellow;} div{width:200px;height: 100px;background: #ccc;display: none;} </style> <script type="text/javascript"> window.onload=function(){ var aBtn=document.getElementsByTagName(‘input‘); var aDiv=document.getElementsByTagName(‘div‘); var i=0; for (i = 0; i < aBtn.length; i++) { aBtn[i].index=i; aBtn[i].onclick=function(){ for(i=0;i<aBtn.length;i++){ aBtn[i].className=‘‘; aDiv[i].style.display=‘none‘; } // alert(this.index); aDiv[this.index].style.display="block"; this.className=‘active‘; } }; } </script> </head> <body> <input type="button" class="active" value="1" > <input type="button" value="2"> <input type="button" value="3"> <div style="display:block">111</div> <div>222</div> <div>333</div> </body> </html>
以上是关于选项卡的主要内容,如果未能解决你的问题,请参考以下文章