zoukankan      html  css  js  c++  java
  • scrollTop offsetWidth clientWidth相关知识要点

    HTML4中的用法
    网页可见区域宽: document.body.clientWidth;
    网页可见区域高: document.body.clientHeight;
    网页可见区域宽: document.body.offsetWidth   (包括边线的宽);
    网页可见区域高: document.body.offsetHeight  (包括边线的宽);
    网页正文全文宽: document.body.scrollWidth;
    网页正文全文高: document.body.scrollHeight;
    网页被卷去的高: document.body.scrollTop;
    网页被卷去的左: document.body.scrollLeft;
    网页正文部分上: window.screenTop;
    网页正文部分左: window.screenLeft;
    屏幕分辨率的高: window.screen.height;
    屏幕分辨率的宽: window.screen.width;
    屏幕可用工作区高度: window.screen.availHeight;
    屏幕可用工作区宽度:window.screen.availWidth;
    XHTML1中的用法
    网页可见区域宽: document.documentElement.clientWidth;
    网页可见区域高: document.documentElement.clientHeight;
    网页可见区域宽: document.documentElement.offsetWidth   (包括边线的宽);
    网页可见区域高: document.documentElement.offsetHeight  (包括边线的宽);
    网页正文全文宽: document.documentElement.scrollWidth;
    网页正文全文高: document.documentElement.scrollHeight;
    网页被卷去的高: document.documentElement.scrollTop;
    网页被卷去的左: document.documentElement.scrollLeft;
    网页正文部分上: window.screenTop;
    网页正文部分左: window.screenLeft;
    屏幕分辨率的高: window.screen.height;
    屏幕分辨率的宽: window.screen.width;
    屏幕可用工作区高度: window.screen.availHeight;
    屏幕可用工作区宽度:window.screen.availWidth;
  • 相关阅读:
    专业开发: MSIL语言学习笔记
    (破解)去掉ILDasm的SuppressIldasmAttribute限制
    UDP编程中的connect
    linux 下的UDP client/server 示例
    HTML颜色代码表
    元素(Element)选择器(jQuery)
    ID选择器(jQuery)
    Photoshop快捷键大全
    MyEclipse快捷键大全
    Windows7快捷键大全
  • 原文地址:https://www.cnblogs.com/tacker/p/1539670.html
Copyright © 2011-2022 走看看