手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >准确获得页面、窗口高度及宽度的JS
准确获得页面、窗口高度及宽度的JS
摘要:functiongetPageSize(){varxScroll,yScroll;if(window.innerHeight&&window...

functiongetPageSize(){

varxScroll,yScroll;

if(window.innerHeight&&window.scrollMaxY){

xScroll=document.body.scrollWidth;

yScroll=window.innerHeight+window.scrollMaxY;

}elseif(document.body.scrollHeight>document.body.offsetHeight){//allbutExplorerMac

xScroll=document.body.scrollWidth;

yScroll=document.body.scrollHeight;

}else{//ExplorerMac...wouldalsoworkinExplorer6Strict,MozillaandSafari

xScroll=document.body.offsetWidth;

yScroll=document.body.offsetHeight;

}

varwindowWidth,windowHeight;

if(self.innerHeight){//allexceptExplorer

windowWidth=self.innerWidth;

windowHeight=self.innerHeight;

}elseif(document.documentElement&&document.documentElement.clientHeight){//Explorer6StrictMode

windowWidth=document.documentElement.clientWidth;

windowHeight=document.documentElement.clientHeight;

}elseif(document.body){//otherExplorers

windowWidth=document.body.clientWidth;

windowHeight=document.body.clientHeight;

}

//forsmallpageswithtotalheightlessthenheightoftheviewport

if(yScroll<windowHeight){

pageHeight=windowHeight;

}else{

pageHeight=yScroll;

}

//forsmallpageswithtotalwidthlessthenwidthoftheviewport

if(xScroll<windowWidth){

pageWidth=windowWidth;

}else{

pageWidth=xScroll;

}

arrayPageSize=newArray(pageWidth,pageHeight,windowWidth,windowHeight)

returnarrayPageSize;

}

有幸找到了你的这个东东,帮我解决了问题,不过仔细看了下,好象大大的有点问题,参数值和名称上看好象有点对不上号哦.

//forsmallpageswithtotalheightlessthenheightoftheviewport

if(yScroll<windowHeight){

pageHeight=yScroll;

}else{

pageHeight=windowHeight;

}

//forsmallpageswithtotalwidthlessthenwidthoftheviewport

if(xScroll<windowWidth){

pageWidth=xScroll;

}else{

pageWidth=windowWidth;

}

【准确获得页面、窗口高度及宽度的JS】相关文章:

javascript实现动态改变层大小的方法

在textarea输入Tab

jquery实现动态改变div宽度和高度

两表格传递变量

CSS+JS实现点击文字弹出定时自动关闭DIV层菜单的方法

prototype 1.5 & scriptaculous 1.6.1 学习笔记

手机端页面rem宽度自适应脚本

父窗口获取弹出子窗口文本框的值

javascript实现可全选、反选及删除表格的方法

javascript字符串与数组转换汇总

精品推荐
分类导航