高级选择问题

时间:2009-07-30 21:50:40

标签: jquery class selection parent

...好 如何选择具有specyfied类名的元素的父元素..?

2 个答案:

答案 0 :(得分:5)

“元素的父母的孩子”称为sibling

$(this).siblings(".theClassYou'reAfter")

答案 1 :(得分:0)

$(this).parent("div").child(".className")

另外,父元素的子元素在技术上是当前元素的兄弟,所以你可以尝试:

$(this).siblings(".className")