此选择器中的此选择器AND元素

时间:2012-08-20 11:29:44

标签: jquery jquery-selectors

有没有办法在同一行中同时包含$(this)$("h3", this)

也许像$("h3,", this)

我知道这不对,但我从来没有听说过相同的东西。

1 个答案:

答案 0 :(得分:9)

您可以使用.andSelf [docs]

$(this).find('h3').andSelf()

它将堆栈中先前选定的元素($(this))与当前选择($(this).find('h3'))合并。