zoukankan      html  css  js  c++  java
  • document.documentElement和document.body区别

    区别:

    body是DOM对象里的body子节点,即 <body> 标签;

    documentElement 是整个节点树的根节点root,即<html> 标签;

    没使用DTD情况即怪异模式BackCompat下:

    document.documentElement.clientHeight=0document.body.clientHeight=618

    使用DTD情况即标准模式CSS1Compat下: 

    document.documentElement.clientHeight=618 document.body.clientHeight=28(表示内容的高度)

    因此提取浏览器的尺寸是要注意了。可以参考以下代码:

     

    if (document.compatMode == "BackCompat") {  

    cWidth = document.body.clientWidth;  

    cHeight = document.body.clientHeight;  

    sWidth = document.body.scrollWidth;  

    sHeight = document.body.scrollHeight;  

    sLeft = document.body.scrollLeft;  

    sTop = document.body.scrollTop;  

    }  

    else { //document.compatMode == "CSS1Compat"  

    cWidth = document.documentElement.clientWidth;  

    cHeight = document.documentElement.clientHeight;  

    sWidth = document.documentElement.scrollWidth;  

    sHeight = document.documentElement.scrollHeight;  

    sLeft = document.documentElement.scrollLeft == 0 ? document.body.scrollLeft : document.documentElement.scrollLeft;  

    sTop = document.documentElement.scrollTop == 0 ? document.body.scrollTop : document.documentElement.scrollTop;  

    }  

     

  • 相关阅读:
    MySql 定时完成备份
    smarty插件
    PHP字符串函数小结
    eclipse搭建maven project的spring4 spring mvc mybatis
    C#数组存入引用类型
    C#数组
    【转】Linus:利用二级指针删除单向链表
    [LeetCode] Reverse Linked List II
    ubuntu配置git
    mint安装Node.js
  • 原文地址:https://www.cnblogs.com/zzsdream/p/6597489.html
Copyright © 2011-2022 走看看