标签: jquery jquery-selectors
有没有办法在同一行中同时包含$(this)和$("h3", this)?
$(this)
$("h3", this)
也许像$("h3,", this)?
$("h3,", this)
我知道这不对,但我从来没有听说过相同的东西。
答案 0 :(得分:9)
您可以使用.andSelf [docs]:
.andSelf
$(this).find('h3').andSelf()
它将堆栈中先前选定的元素($(this))与当前选择($(this).find('h3'))合并。
$(this).find('h3')