zoukankan      html  css  js  c++  java
  • ie和firfox获取上一个或下一个兄弟元素

    在ie中对其中的document.getElementById("ID_Size ").previousSibling 或nextSibling 得到的都是element(节点);而在firefox中得到的是text类型(“/n         ”),在这个级别上,理解完全不一样。或者说,firefox 中的tree是只node级别,而ie中是element级别?

    firefox 解释:

    previousSibling:The node immediately preceding the given one in the tree, or null if there is no sibling node.

    nextSibling :The node immediately following the given one in the tree, or null if there is no sibling node.

    ie解释:

    previousSibling:Retrieves a reference to the previous child of the parent for the object. 获取对此对象的上一个兄弟对象的引用。

    nextSibling :Retrieves a reference to the next child of the parent for the object.获取对此对象的下一个兄弟对象的引用。

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

    解决方案一

    函数

    nextSibling,previousSibling

    说明:获取下一个或上一个的兄弟节点

    在IE下会忽略回车和换行。FF下不会忽略。

    所有我们可以用递归来解决浏览器的差异。

    do {

    td = td.nextSibling;

    } while (td.nodeType != 1)

    nodeType = 3是文本节点

    nodeType = 1是html节点

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

    解决方案二

    w3c  有previousSibling,nextSibling  ie下上一个元素,下一个元素,

    而firefox 不是这个意思可以由它自己的方法代替previousElementSibling,nextElementSlibing

  • 相关阅读:
    Oracle11gR2下PL/SQL访问网络的错误ORA24247
    安装cx_Oracle
    搭建基于FreeNAS的共享存储
    unique constraint 和 unique index 的关系
    Oracle11gR2_RAC全静默安装攻略
    struts中的constant详解 (转载)
    网摘
    用 Google 的 FaceNet 做人脸识别极客帮课程笔记
    【Linux】Git 安装最新版
    【Jmeter】性能测试EMQ X 压测
  • 原文地址:https://www.cnblogs.com/mizzle/p/2097213.html
Copyright © 2011-2022 走看看