溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

JS如何實(shí)現(xiàn)的Tab選項(xiàng)卡

發(fā)布時(shí)間:2021-05-18 11:24:18 來源:億速云 閱讀:141 作者:小新 欄目:web開發(fā)

這篇文章主要介紹JS如何實(shí)現(xiàn)的Tab選項(xiàng)卡,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

具體如下:

Tab選項(xiàng)卡案例

JS如何實(shí)現(xiàn)的Tab選項(xiàng)卡

下面是一個(gè)簡單面向過程的Tab選項(xiàng)卡。

<!DOCTYPE html>
<html>
<head>
  <style>
    #tabBox input {
      background: #F6F3F3;
      border: 1px solid #FF0000;
    }
    #tabBox .active {
      background: #E9D4D4;
    }
    #tabBox div {
      width:300px; 
      height:250px; 
      display:none;
      padding: 10px;
      background: #E9D4D4;
      border: 1px solid #FF0000;
    }
  </style>
  <meta charset="utf-8" />
  <title>選項(xiàng)卡</title>
  <script>
    window.onload=function(){
      var tabBox = document.getElementById('tabBox');
      var tabBtn = tabBox.getElementsByTagName('input');
      var tabDiv = tabBox.getElementsByTagName('div');
      
      for(var i=0;i<tabBtn.length;i++){
        tabBtn[i].index = i;
        tabBtn[i].onclick = function (){
          for(var j=0;j<tabBtn.length;j++){
            tabBtn[j].className='';
            tabDiv[j].style.display='none';
          }
          this.className='active';
          tabDiv[this.index].style.display='block';
        };
      }
    };
  </script>
</head>
 
<body>
  <div id="tabBox">
    <input type="button" value="主頁" class="active" />
    <input type="button" value="說說" />
    <input type="button" value="日志" />
    <div >這是主頁內(nèi)容</div>
    <div>這是說說內(nèi)容</div>
    <div>這是日志內(nèi)容</div>
  </div>
</body>
</html>

下面來慢慢改成面向?qū)ο蟮男问健?/p>

1.首先將嵌套的函數(shù)拿到window.onload外面,不能有函數(shù)嵌套,可以有全局變量。如下:所有的改寫最終效果都不變。

<script>
    //將在嵌套函數(shù)里的變量提取到全局中
    var tabBtn = null;
    var tabDiv = null;
    
    window.onload = function(){
      var tabBox = document.getElementById('tabBox');
      tabBtn = tabBox.getElementsByTagName('input');
      tabDiv = tabBox.getElementsByTagName('div');
      
      for(var i=0;i<tabBtn.length;i++){
        tabBtn[i].index = i;
        //此處調(diào)用函數(shù)即可
        tabBtn[i].onclick = clickBtn;
      }
    };
    
    //將嵌套函數(shù)提取到全局中
    function clickBtn(){
      for(var j=0;j<tabBtn.length;j++){
        tabBtn[j].className='';
        tabDiv[j].style.display='none';
      }
      this.className='active';
      tabDiv[this.index].style.display='block';
    };
    
  </script>

2.將全局的變量變?yōu)閷ο蟮膶傩?,全局的函?shù)變?yōu)閷ο蟮姆椒ǎ粚indow.onload里的代碼提取到一個(gè)構(gòu)造函數(shù)里面,在window.onload里創(chuàng)建對象即可;(下面的代碼執(zhí)行起來是有問題的)。

這里必須注意:在構(gòu)造函數(shù)Tab里的this跟之前this所代表的是不同的(此處是通過new來創(chuàng)建對象的);在上面的示例中,this指的是調(diào)用者;在構(gòu)造函數(shù)里,this指向的是var tab = new Tab() ,即tab這個(gè)對象,注意是對象。

說一下這段代碼的問題:我們在Tab的原型上添加clickBtn方法后,clickBtn方法里的this本應(yīng)該是指向var tab = new Tab()的,但是我們在 this.tabBtn[i].onclick = this.clickBtn; 將clickBtn添加給了this.tabBtn[i],即input按鈕,clickBtn的所屬由Tab對象變成了input按鈕。

clickBtn的所屬變成input按鈕后,那么clickBtn里的this指向按鈕,那再來看clickBtn里的代碼,this.tabBtn、this.tabDiv,input按鈕里有這兩個(gè)屬性嗎?沒有,所以會(huì)出錯(cuò)!

JS如何實(shí)現(xiàn)的Tab選項(xiàng)卡JS如何實(shí)現(xiàn)的Tab選項(xiàng)卡   

<script>   
    window.onload = function(){
      var tab = new Tab("tabBox");
    }
  
    /**
     * 將之前window.onload里的代碼提到一個(gè)構(gòu)造函數(shù)里
     * [可以將這個(gè)Tab構(gòu)造函數(shù)想象成一個(gè)Tab類]
     * @param {Object} id:選項(xiàng)卡id以參數(shù)的形式傳入
     */
    function Tab(id){
      var tabBox = document.getElementById(id);
      //將之前的全局變量變?yōu)閷ο蟮膶傩?
      this.tabBtn = tabBox.getElementsByTagName('input');
      this.tabDiv = tabBox.getElementsByTagName('div');
      
      for(var i=0;i<this.tabBtn.length;i++){
        this.tabBtn[i].index = i;
        
        //此處這種方式調(diào)用函數(shù),已經(jīng)將clickBtn的所屬變成this.tabBtn[i]
        this.tabBtn[i].onclick = this.clickBtn;
      }
    };
    //將之前的全局函數(shù)添加到構(gòu)造函數(shù)的原型里,作為對象的一個(gè)方法
    Tab.prototype.clickBtn = function(){
      alert(this); //HTMLInputElement
      for(var j=0;j<this.tabBtn.length;j++){
        this.tabBtn[j].className='';
        this.tabDiv[j].style.display='none';
      }
      this.className='active';
      this.tabDiv[this.index].style.display='block';
    }; 
  </script>

3.將clickBtn的調(diào)用放在一個(gè)函數(shù)里,這樣就不會(huì)改變clickBtn的所屬了。alert(this);此時(shí)彈出的是一個(gè)Object,說明clickBtn的所屬關(guān)系沒變,還是Tab對象。但是還有另一個(gè)問題,此時(shí)clickBtn里的this指向tab對象,那么this.className、this.index,此處的this指的是tab對象,那么對象中有這兩個(gè)屬性嗎?沒有,還會(huì)出錯(cuò)!所以第4步繼續(xù)改造。

JS如何實(shí)現(xiàn)的Tab選項(xiàng)卡

window.onload = function(){
      var tab = new Tab("tabBox");
    }
  
    /**
     * 選項(xiàng)卡
     * @param {Object} id:選項(xiàng)卡id
     */
    function Tab(id){
      var tabBox = document.getElementById(id);
      
      this.tabBtn = tabBox.getElementsByTagName('input');
      this.tabDiv = tabBox.getElementsByTagName('div');
      
      for(var i=0;i<this.tabBtn.length;i++){
        this.tabBtn[i].index = i;
        //將this保存成一個(gè)變量,就可以在下面代碼中調(diào)用對象的方法了
        var _this = this;
        //此處這種方式調(diào)用函數(shù),就不會(huì)改變clickBtn方法的所屬關(guān)系
        this.tabBtn[i].onclick = function(){
          //注意此處不能直接使用this,this指向this.tabBtn[i]
          _this.clickBtn();
        };
      }
    };
    //點(diǎn)擊選項(xiàng)卡按鈕
    Tab.prototype.clickBtn = function(){
      alert(this); //Object
      for(var j=0;j<this.tabBtn.length;j++){
        this.tabBtn[j].className='';
        this.tabDiv[j].style.display='none';
      }
      this.className='active';
      this.tabDiv[this.index].style.display='block';
    };

4. 以參數(shù)的形式將點(diǎn)擊的按鈕傳入clickBtn中

window.onload = function(){
      var tab = new Tab("tabBox");
    }
  
    /**
     * 選項(xiàng)卡
     * @param {Object} id:選項(xiàng)卡id
     */
    function Tab(id){
      var tabBox = document.getElementById(id);
      
      this.tabBtn = tabBox.getElementsByTagName('input');
      this.tabDiv = tabBox.getElementsByTagName('div');
      
      for(var i=0;i<this.tabBtn.length;i++){
        this.tabBtn[i].index = i;
        var _this = this;
        this.tabBtn[i].onclick = function(){
          //注意參數(shù)this代表的是this.tabBtn[i],即input按鈕
          _this.clickBtn(this);
        };
      }
    };
    //將點(diǎn)擊的按鈕以參數(shù)的形式傳入
    Tab.prototype.clickBtn = function(btn){
      for(var j=0;j<this.tabBtn.length;j++){
        this.tabBtn[j].className='';
        this.tabDiv[j].style.display='none';
      }
      btn.className='active';
      this.tabDiv[btn.index].style.display='block';
    };

5.最終版 —— 將代碼提取到一個(gè)單獨(dú)的js文件中,在用的時(shí)候引入即可。一般花大時(shí)間去寫一個(gè)面向?qū)ο蟮某绦?,就是為了能夠?fù)用,以及方便的使用。

Tab.js

/**
 * 選項(xiàng)卡
 * @param {Object} id 選項(xiàng)卡id
 */
function Tab(id){
  var tabBox = document.getElementById(id);
  this.tabBtn = tabBox.getElementsByTagName('input');
  this.tabDiv = tabBox.getElementsByTagName('div');
  
  for(var i=0;i<this.tabBtn.length;i++){
    this.tabBtn[i].index = i;
    var _this = this;
    this.tabBtn[i].onclick = function(){
      _this.clickBtn(this);
    };
  }
};
/**
 * 為Tab原型添加點(diǎn)擊選項(xiàng)卡方法
 * @param {Object} btn 點(diǎn)擊的按鈕
 */
Tab.prototype.clickBtn = function(btn){
  for(var j=0;j<this.tabBtn.length;j++){
    this.tabBtn[j].className='';
    this.tabDiv[j].style.display='none';
  }
  btn.className='active';
  this.tabDiv[btn.index].style.display='block';
};

使用:tab.html 可以看到使用的時(shí)候,就可以很簡單的創(chuàng)建兩個(gè)選項(xiàng)卡出來了。

<!DOCTYPE html>
<html>
<head>
  <style>
    .tab input {
      background: #F6F3F3;
      border: 1px solid #FF0000;
    }
    .tab .active {
      background: #E9D4D4;
    }
    .tab div {
      width:300px; 
      height:250px; 
      display:none;
      padding: 10px;
      background: #E9D4D4;
      border: 1px solid #FF0000;
    }
  </style>
  <meta charset="utf-8" />
  <title>選項(xiàng)卡</title>
  <!-- 引入tab.js -->
  <script type="text/javascript" src="../js/tab.js" ></script>
  <script>  
    window.onload = function(){
      var tab1 = new Tab("tabBox1");     
      var tab2 = new Tab("tabBox2");
    }  
  </script>
</head>
 
<body>
  <div class="tab" id="tabBox1">
    <input type="button" value="主頁" class="active" />
    <input type="button" value="說說" />
    <input type="button" value="日志" />
    <div >這是主頁內(nèi)容</div>
    <div>這是說說內(nèi)容</div>
    <div>這是日志內(nèi)容</div>
  </div>
  <br />
  <div class="tab" id="tabBox2">
    <input type="button" value="技術(shù)" class="active" />
    <input type="button" value="工具" />
    <input type="button" value="網(wǎng)站" />
    <div >Js、Vue</div>
    <div>VSCode</div>
    <div>CSDN</div>
  </div>
</body>
</html>

JS如何實(shí)現(xiàn)的Tab選項(xiàng)卡

再來簡單總結(jié)一下JS面向?qū)ο笾械膖his,this一般會(huì)在兩種情況下出問題,一是使用定時(shí)器、二是事件,從上面的例子中也可以看出來。注意下面的說法是在構(gòu)造函數(shù)里哦,其它情況下,this指向的是調(diào)用者。

可以看到效果沒有將姓名顯示出來,其實(shí)看到這里原因應(yīng)該很清楚了,就是第14行代碼中this.name,此處的this指向誰?指向window,因?yàn)閟etInterval是屬于window的。

<!DOCTYPE html>
<html>
  <meta charset="UTF-8" />
  <head>
    <script>
      
      function Person(name){
        this.name = name;
        //定時(shí)器
        setInterval(this.showName, 3000);
      }
      Person.prototype.showName = function(){
        alert(this); //window
        alert("姓名:"+this.name);
      }
      
      var p1 = new Person("jiangzhou");
      
    </script>
  </head>
</html>

 解決辦法:上面例子中已經(jīng)列出來了,就是用一個(gè)function將要執(zhí)行的代碼包起來,使其所屬關(guān)系不會(huì)發(fā)生變化,注意function里調(diào)用方法時(shí)使用的是外部變量'_this'。事件的處理在上面的例子中已經(jīng)說明了。

function Person(name){
   this.name = name;
   var _this = this;
   setInterval(function(){
      this.showName();
   }, 3000);
}
Person.prototype.showName = function(){
   alert(this); //[Object Object]
   alert("姓名:"+this.name); //姓名:jianghzou
}      
var p1 = new Person("jiangzhou");

javascript是一種什么語言

javascript是一種動(dòng)態(tài)類型、弱類型的語言,基于對象和事件驅(qū)動(dòng)并具有相對安全性并廣泛用于客戶端網(wǎng)頁開發(fā)的腳本語言,同時(shí)也是一種廣泛用于客戶端Web開發(fā)的腳本語言。它主要用來給HTML網(wǎng)頁添加動(dòng)態(tài)功能,現(xiàn)在JavaScript也可被用于網(wǎng)絡(luò)服務(wù)器,如Node.js。

以上是“JS如何實(shí)現(xiàn)的Tab選項(xiàng)卡”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI