真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

JavaScript如何實(shí)現(xiàn)的簡(jiǎn)單Tab點(diǎn)擊切換功能-創(chuàng)新互聯(lián)

小編給大家分享一下JavaScript如何實(shí)現(xiàn)的簡(jiǎn)單Tab點(diǎn)擊切換功能,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

專(zhuān)注于為中小企業(yè)提供網(wǎng)站制作、網(wǎng)站建設(shè)服務(wù),電腦端+手機(jī)端+微信端的三站合一,更高效的管理,為中小企業(yè)朝陽(yáng)免費(fèi)做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動(dòng)了上1000+企業(yè)的穩(wěn)健成長(zhǎng),幫助中小企業(yè)通過(guò)網(wǎng)站建設(shè)實(shí)現(xiàn)規(guī)模擴(kuò)充和轉(zhuǎn)變。

具體如下:




  www.jb51.net tab點(diǎn)擊切換
  
  *{
    padding: 0;
    margin: 0;
  }
  #example{
    width: 500px;
    height: 400px;
    margin: 0 auto;
  }
  #example .hd ul li{
    display: inline-block;
    width: 32%;
    height: 36px;
    line-height: 36px;
    border-radius: 5px;
    background-color: #333;
    text-align: center;
    color: #fff;
  }
  #example .hd ul li.current{
    background-color: green;
  }
  #example .bd{
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  #example .bd ul li{
    display: none;
  }
  #example .bd ul li.current{
    display: block;
  }
  


  
    
      
            Beijing         
  • Shanghai
  •         
  • Guangzhou
  •       
    
           
            This is Beijing!         
  • This is Shanghai
  •         
  • This is Guangzhou
  •       
    
  
     var hd = document.getElementsByClassName("hd")[0].getElementsByTagName("li");   var bd = document.getElementsByClassName("bd")[0].getElementsByTagName("li");   for (var i = 0; i < hd.length; i++) {     hd[i].onclick = function(){       doTabs(this);     }   }   function doTabs(obj){     for (var i = 0; i < hd.length; i++) {       if(hd[i]==obj){         hd[i].className = "current";         bd[i].className = "current";       }else{         hd[i].className = "";         bd[i].className = "";       }     }   }   

使用本站HTML/CSS/JS在線運(yùn)行測(cè)試工具:http://tools.jb51.net/code/HtmlJsRun,可得到如下測(cè)試運(yùn)行效果:

JavaScript如何實(shí)現(xiàn)的簡(jiǎn)單Tab點(diǎn)擊切換功能

以上是“JavaScript如何實(shí)現(xiàn)的簡(jiǎn)單Tab點(diǎn)擊切換功能”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!


本文標(biāo)題:JavaScript如何實(shí)現(xiàn)的簡(jiǎn)單Tab點(diǎn)擊切換功能-創(chuàng)新互聯(lián)
文章來(lái)源:http://weahome.cn/article/dihghe.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部