1. 程式人生 > 程式設計 >JavaScript 排他思想的具體實現

JavaScript 排他思想的具體實現

在前面的部落格中,小熊更新了相關操作元素的方法,但是如果有同一組元素,我們想要某一個元素實現某種樣式,這時需要怎麼辦呢? 這裡就要用到迴圈的排他思想。

排他思想的演算法就是:
排除掉其他的(包括自己),然後再給自己設定想要實現的效果。總而言之,排他思想的實現步驟就是所有元素全部清除與設定當前元素。

可以簡單理解為:

  • 所有元素全部清除樣式(幹掉其他人)
  • 給當前元素設定樣式 (留下我自己)

需要注意的是:這裡的順序不能顛倒。
比如,頁面有五個按鈕,我們想要給它實現迴圈點選事件:當點到哪個按鈕,就讓哪個按鈕變色,應該怎樣操作呢?

1、我們先建立五個按鈕。
如下所示:

    <button>按鈕1</button>
    <button>按鈕2</button>
    <button>按鈕3</button>
    <button>按鈕4</button>
    <button>按鈕5</button>

2、獲取元素

<script>
    //獲取元素
     var btn = document.getElementsByTagName('button');
     console.log(btn);
</script>

3、迴圈遍歷列印按鈕

for(var i =0; i<btn.length;i++){
	console.log(btn[i]
	}

4、在第一個for迴圈裡面給每個按鈕新增點選事件。首先在內迴圈裡面清除掉所有按鈕的樣式,然後在外迴圈裡給當前點選的按鈕新增樣式。

btn[i].onclick = function(){
	for(var j =0;j<btn.length;j++){
		btn[j].style.backgroundColor = '';
		}
	this.style.backgroundColor = 'blue';
}

最終效果為:

在這裡插入圖片描述

接下來我們舉幾個例子看看吧!

1、實現簡單的tab欄切換的功能

程式碼如下:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width,initial-scale=1.0">
    <title>Document</title>
    <!-- 編寫一個完整的tab切換效果的頁面 -->
    <style>
        * {
            margin: 0;
            padding: 0;
        }
        .box_1 {
            width: 800px;
            height: 400px;
            background-color:rgb(141,169,173);
            margin: 100px auto;
        }
        ul {
            position:absolute;
            top: 64px;
            left:220px;
            height: 35px;
            line-height: 35px;
            text-align: center;
        }
        li {
            width: 80px;
            height: 35px;
            list-style: none;
            float: left;
            border: 1px solid #ccc;
            margin-left:www.cppcns.com
2px; border-top-left-radius: 6px; border-top-right-radius: 6px ; } .li1 { font-weight: 700; color: black; border-bottom: none; background-color: skyblue; cursor: pointer; } .item{ display:none; } </style> </head> <body> <div class = 'box'> <ul> <li class='li1'>標籤一</li> <li>標籤二</li> <li class = 'li2' style="width:150px">自適應寬度的標籤</li> </ul> <div class="box_1"> <div class="item" style = "display:block">第一個標籤的內容</div> <div class="item">第二個標籤的內容</div> <div class="item">自適應寬度的標籤的內容</div> </div> </div> <script> var li = document.querySelectorAll('li'); console.log(li); var item = document.querySelectorAll('.item'); console.log(item); for(var i =0;i<li.length;i++){ li[i].setAttribute('index',i); li[i].onclick = function(){ for(var j =0;j<item.length;j++){ li[j].className = ''; console.log(li[i]); } this.className = 'li1'; var index = this.getAttribute('index'); console.log(index); for(var k = 0;k<item.length;k++){ item[k].style.display='none'; } item[index].style.display = 'block'; } } </script> </body> </html>

實現效果為:

在這裡插入圖片描述

2、實現一個動態點選的調查結果顯示頁面,要求當點選複選框選項時對應的進度條增加。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge"&gt;
    <meta name="viewport" content="width=device-width,initial-scale=1.0">
    <title>Document</title>
    <style>
        .box{
            width: 700px;
            margin: 10px auto;
        }
        .bar {
			width:200px;
			height: 15px;
			padding: 1px;
            background-color: rgb(250,249,249);
		}
        .bar_in{
            width:7%;
            height:100%;
			transition: width 0.5s;

        }
		.bar_in1 {
			background-color: orange;
		}
        .bar_in2{
            background-color: yellow;
        }
        .bar_in3{
            background-color: brown;
        }
        .bar_in4{
            background-color: chocolate;
        }
        .bar_in5{
            background-color: green;
        }
        .bar_in6{
            background-color: blue;
        }
        .bar_in7{
            background-color: cornflowerblue;
        }
        .bar_in8{
            background-color: deeppink;
        }
        .bar_in9{
            background-color: rgb(171,204,23);
        }
        .bar_in10{
            background-color: red;
        }
        tr{
            width:800px;
            height: 40px;
           
        }
        td{
            font-size: 14px;
            width: 200px;
            line-height: 40px;
            border-bottom: 1px solid #ccc;
        }
         tr #no1{
            width: 300px;
        }
        .header{
            font-size: 16px;
            font-weight: 700;
        }
        .t1 {
            width: 500px;
        }
        span{
            color:red;
            font-size: 14px;
        }
    </style>
</head>
<body>
    <div class="box">
        <table>
            <tr>
                <td colspan="4" class= 'header'>你被“最美鄉村女教師”感動了嗎<span>(必選)</span></td>
            </tr>
            <tr>
                <td  class='t1'><input type="checkbox" name=""  >很感動,她很美</td>
                <td>
                    <div class="bar">
                    <div class=" bar_in bar_in1">
                    </div>
                </div>
                </td>
                <td>0(0%)</td>
            </tr>
            <tr>
                <td class='t1'><input type="checkboRAajKtxAx" name="" id="">很感動,她很美</td>
                <td>
                    <div class="bar">
                    <div class=" bar_in bar_in2">
                    </div>
                </div>
                </td>
                <td>335733(96.16%)</td>
            </tr>
            <tr>
                <td class='t1'><input type="checkbox" name="" id="">沒感覺,這樣的事很多</td>
                <td>
                    <div class="bar">
                    <div class="bar_in bar_in3">
                    </div>
                </div>
                </td>
                <td>4997(1.43%)</td>
            </tr>
            <tr>
                <td class='t1'><input type="checkbox" name="" id="">不感動,可能是炒作</td>
                <td>
                    <div class="bar">
                    <div class="bar_in bar_in4">
                    </div>
                </div>
                </td>
                <td>8398(2.41%)</td>
            </tr>
        </table>
        <table>
            <tr>
                <td colspan="3" class= 'header'>你會願意為李靈和她的學校做什麼?<span>(必選)</span></td>
            </tr>
            <tr>
                <td class="t1"><input type="checkbox" name="" id="" >捐書給他們,讓他們有個閱覽室</td>
                <td>
                    <div class="bar">
                    <div class=" bar_in bar_in5">
                    </div>
                </div>
                </td>
                <td>163002(45.89%)</td>
            </tr>
            <tr>
                <td><input type="checkbox" name="" id="">捐錢給他們,讓他們修繕學校</td>
                <td>
                    <div class="bar">
                    <div class="bar_in bar_in6">
                    </div>
                </div>
                </td>
                <td>52692(15.09%)</td>
            </tr>
            <tr>
                <td><www.cppcns.cominput type="checkbox" name="" id="">向朋友講述李靈的故事</td>
                <td>
                    <div class="bar">
                    <div class="bar_in bar_in7">
                    </div>
                </div>
                </td>
                <td>118533(33.96%)</td>
            </tr>
            <tr>
                <td><input type="checkbox" name="" id="">什麼都不會做</td&www.cppcns.comgt;
                <td>
                    <div class="bar">
                    <div class="bar_in bar_in8">
                    </div>
                </div>
                </td>
                <td>14881(4.26%)</td>
            </tr>
            <tr>
                <td><input type="checkbox" name="" id="">什麼都不會做</td>
                <td>
                    <div class="bar">
                    <div class="bar_in bar_in9">
                    </div>
                </div>
                </td>
                <td>0(0%)</td>
            </tr>
            <tr>
                <td><input type="checkbox" name="" id="">什麼都不會做</td>
                <td>
                    <div class="bar">
                    <div class="bar_in bar_in10">
                    </div>
                </div>
                </td>
                <td>0(0%)</td>
            </tr>
        </table>
    </div>
    <script>
        var input = document.querySelectorAll('input');
        var barin = document.querySelectorAll('.bar_in');
        var w = [10,98,30,25,50,22,38,34,20,20];
        console.log(typeof(5+'%'));
        console.log(barin);
        console.log(input);
        for(var i =0;i<input.length;i++){
            input[i].setAttribute('index',i)
            input[i].onclick = function(){
                 var index = this.getAttribute('index')
                barin[index].style.width= w[index]+'%';
            }
        }
    </script>
</body>
</html>

實現效果為:

在這裡插入圖片描述

到此這篇關於 排他思想的具體實現的文章就介紹到這了,更多相關Script 排他內容請搜尋我們以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援我們!