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 以便我可以使用上述语法吗?
我不知道如何对 $() 返回的东西进行原型制作,以便我可以调用 $().$()
谢谢。
您可以使用find()
find()
例如:$('.superset').find('.within');
$('.superset').find('.within');
或者更简单,$('.superset .within');
$('.superset .within');
是的!
$.fn.$ = $.fn.find;
现在你可以使用.$()
.$()