jQuery层级选择器

            //next元素后紧邻兄弟 nextAll元素后所有div兄弟
            // prev元素前紧邻兄弟 prevAll siblings()元素前所有div兄弟
            $("#two").next("div").css("background-color", "yellow");
            $("#two").nextAll("div").css("background-color", "gold");
            $("#two").prev("div").css("background-color", "cyan");
            $("#two").prevAll("div").css("background-color", "blue");



层级选择器









    
    
    
    
    

    

点击按钮查看效果...

div:id为one
div span
div
div:id为two
div
div:
div
span
div

span

你可能感兴趣的:(jQuery层级选择器)