本文主要是介绍jQuery初学:find()方法及children方法的区别分析,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
通过以上的解释,可以总结如下:1:children及find方法都用是用来获得element的子elements的,两者都不会返回 text node,就像大多数的jQuery方法一样。
2:children方法获得的仅仅是元素一下级的子元素,即:immediate children。
3:find方法获得所有下级元素,即:descendants of these elements in the DOM tree
4:children方法的参数selector 是可选的(optionally),用来过滤子元素,但find方法的参数selector方法是必选的。
5:find方法事实上可以通过使用 jQuery( selector, context )来实现:英语如是说:Selector context is implemented with the .find() method; therefore, $('li.item-ii').find('li') is equivalent to $('li', 'li.item-ii').
详细出处参考: http://www.jb51.net/article/26195.htm
这篇关于jQuery初学:find()方法及children方法的区别分析的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!