2

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

也许像$("h3,", this)什么?

我知道这是不对的,但我从未听说过类似的东西。

4

1 回答 1

9

您可以使用.andSelf [文档]

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

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

于 2012-08-20T11:32:50.540 回答