jQuery排他思想

代码:

<html lang="">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        <title>首页</title>
        <script src="jqeury.js"></script>
    </head>
    <body>
        <div style="margin: 200px">
            <button>快速</button>
            <button>快速</button>
            <button>快速</button>
            <button>快速</button>
            <button>快速</button>
            <button>快速</button>
            <button>快速</button>
            <button>快速</button>
        </div>
        <script>
            $(function () {
                // 1.隐式迭代 给所有的按钮都绑定了点击事件
                $("button").click(function () {
                // 2.当前元素变化背景颜色
                    $(this).css("background","pink");
                // 3.其余的兄弟去掉背景颜色
                    $(this).siblings("button").css("background","");
                })
            })
        </script>
    </body>
</html>

效果演示:
jQuery排他思想_第1张图片

你可能感兴趣的:(jQuery,jquery)