Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找将所有子对象和选择器本身添加到 jQuery 对象的快捷方式。
做这样的事情的捷径:
$(selector,context).add(context)
我想也许 .andSelf() 可以帮助..但没有。
$('#element').children().andSelf()
我不确定你想要什么。
要将上下文添加到由选择器过滤的子项中,请使用
$(context).find(selector).addBack()
LIVE DEMO
$('#parent').find('.child').andSelf()