[JS]用js获取浏览器窗口高度的源代码
[JS]用js获取浏览器窗口高度的源代码
[JS]用js获取浏览器窗口高度的源代码
- /********************
- * CuPlayer.com 取窗口滚动条滚动高度
- ******************/
- function getScrollTop()
- {
- var scrollTop=0;
- if(document.documentElement&&document.documentElement.scrollTop)
- {
- scrollTop=document.documentElement.scrollTop;
- }
- else if(document.body)
- {
- scrollTop=document.body.scrollTop;
- }
- return scrollTop;
- }
- /********************
- * CuPlayer.com 取窗口可视范围的高度
- *******************/
- function getClientHeight()
- {
- var clientHeight=0;
- if(document.body.clientHeight&&document.documentElement.clientHeight)
- {
- var clientHeight = (document.body.clientHeight<document.documentElement.clientHeight)?document.body.clientHeight:document.documentElement.clientHeight;
- }
- else
- {
- var clientHeight = (document.body.clientHeight>document.documentElement.clientHeight)?document.body.clientHeight:document.documentElement.clientHeight;
- }
- return clientHeight;
- }
- /********************
- * CuPlayer.com 取文档内容实际高度
- *******************/
- function getScrollHeight()
- {
- return Math.max(document.body.scrollHeight,document.documentElement.scrollHeight);
- }
热门文章推荐
- [JS]window.location获取url各项参数详解
- [JS]jQuery,javascript获得网页的高度和宽度
- [JS]视频弹窗视频弹出层videoLightBox(含三种播放器的用法)
- [JS]JS提交中文encodeURI两次转码
- [JS]js版方面encodeURI转码和decodeURI解码的用法实例
- [JS]js取当前机子的时间戳实例
- [JS]AES加密(基于crypto-js)PHP后端解密
- [JS]data:image/png;base64写法的用途及说明
请稍候...