JQuery - $(this) 加 siblings() 的使用


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>this的使用</title>
    <script src="jquery-3.4.1.min.js"></script>
</head>
<body>
    <button>aaa</button>
    <button>bbb</button>
    <button>ccc</button>

 

    <script>
        $(()=>{
             $("button").click(function(){
                $(this).addClass("test")//為當前元素增加test類
                $(this).siblings().removeClass("test")//獲取元素的兄弟元素,並去掉他們的test類   (siblings() 方法返回被選元素的所有同級元素。)
            });
        })
    </script>
</body>
</html>


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM