>  기사  >  웹 프론트엔드  >  간단한 탭 전환_javascript 기술을 구현하는 4가지 JavaScript 방법

간단한 탭 전환_javascript 기술을 구현하는 4가지 JavaScript 방법

WBOY
WBOY원래의
2016-05-16 15:21:431387검색

이 글에서는 자바스크립트를 이용한 간단한 탭 전환 방법 4가지를 설명하고 참고용으로 공유합니다
렌더링:

방법 1: for 루프 if를 통해 현재 클릭이 사용자 정의 배열과 일치하는지 확인

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>tab切换</title>
  <style type="text/css">
    button {
      width:120px;
      height: 32px;
      line-height: 32px;
      background-color: #ccc;
      font-size: 24px;
    }
    div {
      display: none;
      width:200px;
      height: 200px;
      font-size: 72px;
      color:#ddd;
      background-color: green;
      border:1px solid black;
    }
  </style>
</head>
<body>
  <button style="background-color: yellow;">1</button>
  <button>2</button>
  <button>3</button>
  <button>4</button>
  <div style="display:block;">1</div>
  <div>2</div>
  <div>3</div>
  <div>4</div>
  <script type="text/javascript">
  //定义数组并获取数组内各个的节点
  var buttonArr = document.getElementsByTagName("button");
  var divArr = document.getElementsByTagName("div");
  for(var i = 0; i < buttonArr.length;i++) {
    buttonArr[i].onclick = function() {
      //this 
      // alert(this.innerHTML)
      //for循环遍历button数组长度
      for(var j = 0; j < buttonArr.length; j++) {
        //重置所有的button样式
        buttonArr[j].style.backgroundColor = "#ccc";
        //给当前的(点击的那个)那个button添加样式
        this.style.backgroundColor = "yellow";
        //隐藏所有的div
        divArr[j].style.display = "none";
        //判断当前点击是按钮数组中的哪一个?
        if(this == buttonArr[j]) {
          // alert(j);
           //显示点击按钮对应的div
          divArr[j].style.display = "block";
        }
      }
    }
  }
  </script>
</body>
</html>

방법 2: 현재 클릭에 맞게 색인 사용자 지정

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>tab切换</title>
  <style type="text/css">
    button {
      width:120px;
      height: 32px;
      line-height: 32px;
      background-color: #ccc;
      font-size: 24px;
    }
    div {
      display: none;
      width:200px;
      height: 200px;
      font-size: 72px;
      color:#ddd;
      background-color: green;
      border:1px solid black;
    }
  </style>
</head>
<body>
  <button style="background-color: yellow;">1</button>
  <button>2</button>
  <button>3</button>
  <button>4</button>
  <div style="display:block;">1</div>
  <div>2</div>
  <div>3</div>
  <div>4</div>
  <script type="text/javascript">
  var buttonArr = document.getElementsByTagName("button");
  var divArr = document.getElementsByTagName("div");
  for(var i = 0; i < buttonArr.length;i++) {
    buttonArr[i].index = i;
    // buttonArr[i].setAttribute("index",i);
    buttonArr[i].onclick = function() {
      for(var j = 0; j < buttonArr.length; j++) {
        buttonArr[j].style.backgroundColor = "#ccc";
        buttonArr[this.index].style.backgroundColor = "yellow";
        divArr[j].style.display = "none";
        divArr[this.index].style.display = "block";
      }
    }
  }
  
  </script>
</body>
</html>

방법 3: className

<!doctype html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>tab</title>
  <style type="text/css">
    * {padding:0; margin:0;}
    button {
      background-color: #ccc;
      width:80px;
      height: 30px;
    }
    .btn-active {
      background-color: yellow;
      font-weight:bold;
      font-size: 14px;
    }
    div{
      width:200px;
      height: 200px;
      font-size: 64px;
      background-color: #0c0;
      display: none;
      color:#fff;
    }
    .div-active {
      display: block;
    }
  </style>
</head>
<body>
  <button class="btn-active">按钮1</button>
  <button>按钮2</button>
  <button>按钮3</button>
  <button>按钮4</button>
  <div class="div-active">1</div>
  <div>2</div>
  <div>3</div>
  <div>4</div>
  <script type="text/javascript">
  //1.先获取元素
  var buttonList = document.getElementsByTagName("button");
  var divList = document.getElementsByTagName("div");
  //2.添加事件
  for(var i = 0; i < buttonList.length; i++) {
    buttonList[i].index = i;
    buttonList[i].onclick = function() {
      for(var j = 0; j < buttonList.length;j++) {
        buttonList[j].className = "";
        divList[j].className = "";
      }
      this.className = "btn-active";
      divList[this.index].className = "div-active";
    }
  }
  </script>
</body>
</html>

방법 4: className 익명 함수 자체 실행

<!doctype html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>tab</title>
  <style type="text/css">
    * {padding:0; margin:0;}
    button {
      background-color: #ccc;
      width:80px;
      height: 30px;
    }
    .btn-active {
      background-color: yellow;
      font-weight:bold;
      font-size: 14px;
    }
    div{
      width:200px;
      height: 200px;
      font-size: 64px;
      background-color: #0c0;
      display: none;
      color:#fff;
    }
    .div-active {
      display: block;
    }
  </style>
</head>
<body>
  <button class="btn-active">按钮1</button>
  <button>按钮2</button>
  <button>按钮3</button>
  <button>按钮4</button>
  <div class="div-active">1</div>
  <div>2</div>
  <div>3</div>
  <div>4</div>
  <script type="text/javascript">
  //1.先获取元素
  var buttonList = document.getElementsByTagName("button");
  var divList = document.getElementsByTagName("div");
  //2.添加事件
  for(var i = 0; i < buttonList.length; i++) {
    (function(i){ //匿名函数自执行
       buttonList[i].onclick = function() {
        for(var j = 0; j < buttonList.length;j++) {
          buttonList[j].className = "";
          divList[j].className = "";
        }
        this.className = "btn-active";
        divList[i].className = "div-active";
      }
    })(i)
  }
  </script>
</body>
</html>

이 기사가 JavaScript 프로그래밍을 배우는 모든 사람에게 도움이 되기를 바랍니다.

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.