zoukankan      html  css  js  c++  java
  • jQuery排他思想(important!)

    <!DOCTYPE html>
    <html lang="en">
    
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <script src="js/jquery.min.js"></script>
        <title>Document</title>
        <style>
            button:nth-child(1) {
                /* background-color: red; */
            }
        </style>
    
    </head>
    
    <body>
        <BUTTON>快速</BUTTON>
        <BUTTON>快速</BUTTON>
        <BUTTON>快速</BUTTON>
        <BUTTON>快速</BUTTON>
        <BUTTON>快速</BUTTON>
        <BUTTON>快速</BUTTON>
        <BUTTON>快速</BUTTON>
        <BUTTON>快速</BUTTON>
        <script>
            $('button').click(function() {
                $(this).css('background', 'pink');
                //siblings()函数是筛选出此元素的所有兄弟元素,详情可以查看筛选方法
                $(this).siblings().css('background', '');
            })
        </script>
    </body>
    
    </html>

     

  • 相关阅读:
    JS4
    JS3
    JS2
    JS1
    Dos命令
    面向对象的复习
    9.14Css
    9.13列表的用法
    9.12Css
    9.11Css
  • 原文地址:https://www.cnblogs.com/webpon/p/13468995.html
Copyright © 2011-2022 走看看