JavaScript--Web APIs Study Notes (3) Exclusive Thoughts

Exclusive thinking: first exclude others, then set your own style

Example: five buttons, click a button, its background color changes to pink, and the default color of other buttons

 

<!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>
</head>
<body>
    <button>按钮1</button>
    <button>按钮2</button>
    <button>按钮3</button>
    <button>按钮4</button>
    <button>按钮5</button>
    <script>
        var btns = document.getElementsByTagName('button');
        for(var i = 0;i < btns.length ; i++){
            btns[i].onclick = function(){
                for(var j = 0; j< btns.length;j++){
                    btns[j].style.backgroundColor = '';
                }
                this.style.backgroundColor = 'pink';
            }
        }
    </script>
</body>
</html>

Guess you like

Origin blog.csdn.net/weixin_44400887/article/details/124033986