Jquery总结 $("h3 a", patch);

$("h3 a", patch);
简单讲,是 $('#parentID').find('childNode') 的偷懒写法

$("h3 a", patch) 等于 patch.find('h3 a')
$("h3 a",$(this))  等于 $(this).find('h3 a')

直接用 find 会快些,因为偷懒的写法最终还是调用 find

原文地址:https://www.cnblogs.com/AaronLi/p/2065367.html