1. 程式人生 > >如何更好的通過js應用css-遁地龍卷風

如何更好的通過js應用css-遁地龍卷風

tro lan uno 實現 toggle ans -c .cn ctype

我們有如下需求,當點擊按鈕時,下面的div變顏色 有更好的實現歡迎提出

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
        #test .bg_container{
            width: 200px;
            height: 100px;
            background-color: red;
        }
#test .active ~ .bg_container{ /*盡管這裏不需要!important 但這是個好習慣*/ background-color: black !important; } </style> </head> <body> <div id="test"> <button class="switch">switch</button> <div class
="bg_container"></div> </div> </body> <script src="http://cdn.static.runoob.com/libs/jquery/1.10.2/jquery.min.js"></script> <script> $("#test .switch").click(function(){ $(this).toggleClass("active") }) </script> </html>

結語

歡迎加入QQ群662546586

歡迎打賞

技術分享

如何更好的通過js應用css-遁地龍卷風