• JavaScript 之 parentNode、parentElement,childNodes、children


    parentElement 获取对象层次中的父对象。  
    parentNode 获取文档层次中的父对象。  
    childNodes 获取作为指定对象直接后代的 HTML 元素和 TextNode 对象的集合。  
    children 获取作为对象直接后代的 DHTML 对象的集合。  


    --------------------------------------------------------

    parentNode和parentElement功能一样,childNodes和children功能一样。但是parentNode和childNodes是符合W3C标准的,可以说比较通用。而另外两个只是IE支持,不是标准,Firefox就不支持

    --------------------------------------------------------

    也就是说parentElement、children是IE自家的东西,别的地方是不认的。
    那么,他们的标准版就是parentNode,childNodes。
    这两个的作用和parentElement、children是一样的,并且是标准的、通用的。
  • 相关阅读:
    linux网桥浅析
    linux slub分配器浅析
    vs2015 C# WinForm 使用皮肤 美化窗体
    枚举可以直接赋值给int
    LINK : fatal error LNK1000: Internal error during IncrBuildImage
    map映射类
    map
    time
    int to string
    eclipse
  • 原文地址:https://www.cnblogs.com/haoliansheng/p/1443372.html
Copyright © 2020-2023  润新知