小編給大家分享一下js怎么實現(xiàn)Tab選項卡切換效果,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
創(chuàng)新互聯(lián)是一家專注于成都網(wǎng)站制作、做網(wǎng)站與策劃設(shè)計,南沙網(wǎng)站建設(shè)哪家好?創(chuàng)新互聯(lián)做網(wǎng)站,專注于網(wǎng)站建設(shè)十載,網(wǎng)設(shè)計領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:南沙等地區(qū)。南沙做網(wǎng)站價格咨詢:13518219792
1、js屬于一種解釋性腳本語言;2、在絕大多數(shù)瀏覽器的支持下,js可以在多種平臺下運(yùn)行,擁有著跨平臺特性;3、js屬于一種弱類型腳本語言,對使用的數(shù)據(jù)類型未做出嚴(yán)格的要求,能夠進(jìn)行類型轉(zhuǎn)換,簡單又容易上手;4、js語言安全性高,只能通過瀏覽器實現(xiàn)信息瀏覽或動態(tài)交互,從而有效地防止數(shù)據(jù)的丟失;5、基于對象的腳本語言,js不僅可以創(chuàng)建對象,也能使用現(xiàn)有的對象。
具體內(nèi)容如下
html部分
Document
css部分
*{ padding:0px; margin:0px; list-style: none; font-size: 14px; } #tab{ width:298px; height:120px; margin:10px; border:1px solid #eee; overflow: hidden; } .tab-nav{ width:400px; position:relative; height:27px; } .tab-nav ul{ position:absolute; width:301px; left:-1px; background-color: #f7f7f7; } .tab-nav li{ float:left; width:58px; padding: 0 1px; height:36px; background-color: #f7f7f7; border-bottom: 1px solid #eee; text-align: center; } .tab-nav li.active{ background-color: #fff; border-bottom-color:#fff; border-left: 1px solid #eee; border-right: 1px solid #eee; padding:0px; font-weight: bolder; } li a:link,li a:visited{ text-decoration: none; color:#000; } #tab-contain .mod{ margin:25px 6px 10px 6px; } #tab-contain .mod ul li{ float: left; width:143px; height:25px; overflow: hidden; }
Js部分
function $(id){ return typeof id==='string'?document.getElementById(id):id; } window.onload=function(){ var navs=$('tab-nav').getElementsByTagName('li'); var divs=$('tab-contain').getElementsByTagName('div'); // alert(divs.length); if(navs.length!=divs.length){ return; } for(var i=0;i以上是“js怎么實現(xiàn)Tab選項卡切換效果”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
當(dāng)前文章:js怎么實現(xiàn)Tab選項卡切換效果
轉(zhuǎn)載來源:http://weahome.cn/article/jcsheo.html