有没有办法同时包含:$(this)
和$("h3", this)
在同一行?
也许像$("h3,", this)
什么?
我知道这是不对的,但我从未听说过类似的东西。
有没有办法同时包含:$(this)
和$("h3", this)
在同一行?
也许像$("h3,", this)
什么?
我知道这是不对的,但我从未听说过类似的东西。
您可以使用.andSelf
[文档]:
$(this).find('h3').andSelf()
它将堆栈中先前选择的元素 ( $(this)
) 与当前选择 ( $(this).find('h3')
) 合并。