手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >jQuery初学:find()方法及children方法的区别分析
jQuery初学:find()方法及children方法的区别分析
摘要:首先看看英文解释吧:children方法:find方法:通过以上的解释,可以总结如下:1:children及find方法都用是用来获得ele...

首先看看英文解释吧:

children方法:

jQuery初学:find()方法及children方法的区别分析1

find方法:

jQuery初学:find()方法及children方法的区别分析2

通过以上的解释,可以总结如下:

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').

例如,有以下html元素:

jQuery初学:find()方法及children方法的区别分析3

使用:$('ul.level-2').children().css('border', '1px solid green'); 的效果是:

jQuery初学:find()方法及children方法的区别分析4

使用 $('ul.level-2').find('li').css('border', '1px solid green'); 的效果是:

jQuery初学:find()方法及children方法的区别分析5

【jQuery初学:find()方法及children方法的区别分析】相关文章:

jquery实现弹出层效果实例

jQuery获取字符串中出现最多的数

jQuery实现不断闪烁文字的方法

jquery右下角自动弹出可关闭的广告层

Angular中$compile源码分析

Jquery使用val方法读写value值

JQuery中attr方法和removeAttr方法用法实例

JavaScript中fixed()方法的使用简介

javascript嵌套函数和在函数内调用外部函数的区别分析

JQuery中Text方法用法实例分析

精品推荐
分类导航