$ parent.find(“children”)与$(“children”,$ parent)之间有什么不同?

时间:2014-06-23 14:58:23

标签: jquery jquery-selectors

我知道以下两个陈述都会产生相同的结果,

 var $childNode = $parent.find("children"); and 
 var $childNode = $("children", $parent);

但我想知道哪一个更好,另一个为什么?

这些方法在实施方面有何不同?

1 个答案:

答案 0 :(得分:0)

the documentation所述,没有区别:

  

Selector context使用.find()方法实现;因此,$( "li.item-ii" ).find( "li" )相当于$( "li", "li.item-ii" )