选择集转移
$(#div1).next().css({color.red});
选择后#div1下面的元素变为红色
$(#div1).nextAll("p").css({color:red});
选择div1后面所有的p元素变为红色
$(#span01).parent().css({width:"100px",height:"100px",background:"golo"});
选择span的直接父元素变为宽100 高100 颜色金色
$(#span01).closest("div").css({w200px,h200px,background:yellow});
选择离自己最近的父元素(.closest)
//$(".list" li) 这一种不可以回到父级设置元素
ul.list>li*5
$(”.list“).children().css({background:red;}).end().css({nackground:green;});
为所有的子元素添加样式 可以使用end直接回到父级继续给父级设置样式
ul.list2>li*5
$(".list2 li:eq(2)").css({background:red;}).siblings.css({background:yellow;});
给list2里的第三个li设置背景为红色 把除了下标为2 的所有兄弟元素设置为黄色
$(#div2).find("link02").css({background:red;});
在div2下查找link02 的设置为red
网友评论