如何选择$(this)AND $(this)>孩子用jQuery?

时间:2012-08-23 12:04:12

标签: jquery jquery-selectors this css-selectors parent-child

无法弄明白这一点。如果我使用:

$('> .someClass', this);

它会选择this > .someClass,但我想选择thisthis > child

尝试

  $(this+'> .someClass', this);
//AND
 var currentEl = $(this);
  $(currentEl, currentEl+'> .someClass')

任何帮助都将不胜感激。

2 个答案:

答案 0 :(得分:1)

使用andSelf()

$(this).find('> .someclass').andSelf();

andSelf() documentation

答案 1 :(得分:1)

您可以使用.andSelf()功能将this添加到匹配元素集中,如下所示:

$(this).find('> .someclass').andSelf();