zoukankan      html  css  js  c++  java
  • jQuery初学:find()方法及children方法的区别分析

    首先看看英文解释吧:


    children方法:

    find方法:

    通过以上的解释,可以总结如下:
    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').

    请注意,与大多数 jQuery 方法一样,.children() 不返回文本节点;如果需要获得包含文本和注释节点在内的所有子节点,请使用 .contents()。


    例如,有以下html元素:

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

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

    来自:http://www.jb51.net/article/26195.htm

  • 相关阅读:
    第四周学习报告
    第三周学习报告
    第二周学习报告
    第一周学习报告
    大创首月学习计划
    20183122 综合实验《Python程序设计》实验报告
    20183122 实验三《Python程序设计》实验报告
    20183122 实验二《Python程序设计》实验报告
    数据存储和JSON,CSV
    python模块那点事
  • 原文地址:https://www.cnblogs.com/webqiand/p/4213135.html
Copyright © 2011-2022 走看看