1 从集合中通过指定的序号获取元素
html:
JS
2 获取指定条件一致和指定范围的元素
html:
JS
3 获取与条件表达式一致的元素
html:
js
4 获取元素的上一个元素和下一个元素
Html:
js
//获取元素的下一个元素
jQuery(function(){
$("p").next(".yes").css("color","red");
})
//获取元素的上一个元素
jQuery(function(){
$("p").prev(".yes").css("color","red");
})
5 获取元素的父元素和子元素
html:
js
//获取元素的父元素
jQuery(function(){
$("p").parent().css("color","red");
})
//获取元素的子元素
jQuery(function(){
$("#aa").children(".yes").css("color","red");
})