- 相關(guān)推薦
如何使用JavaScript快速獲取頁(yè)面高度寬度
如何使用JavaScript快速獲取頁(yè)面高度寬度呢?大家可以嘗試一下代碼的實(shí)現(xiàn),更多詳情請(qǐng)關(guān)注應(yīng)屆畢業(yè)生考試網(wǎng)。
/********************
* 取窗口滾動(dòng)條高度
******************/
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;
}
/********************
* 取窗口可視范圍的高度
*******************/
function getClientHeight()
{
var clientHeight=0;
if(document.body.clientHeight&&document.documentElement.clientHeight)
{
var clientHeight = (document.body.clientHeight<document.documentElement.clientHeight)?docum
ent.body.clientHeight:document.documentElement.clientHeight;
}
else
{
var clientHeight = (document.body.clientHeight>document.documentElement.clientHeight)?docum
ent.body.clientHeight:document.documentElement.clientHeight;
}
return clientHeight;
}
/********************
* 取文檔內(nèi)容實(shí)際高度
*******************/
function getScrollHeight()
{
return Math.max(document.body.scrollHeight,document.documentElement.scrollHeight);
}
【如何使用JavaScript快速獲取頁(yè)面高度寬度】相關(guān)文章:
如何使用javascript實(shí)現(xiàn)瀑布流及效果加載12-09
Word2007如何快速定位自己需要的頁(yè)面信息11-28
Dreamweaver如何創(chuàng)建頁(yè)面02-25
如何檢查JavaScript變量的類型11-30
JavaScript如何實(shí)現(xiàn)JSON.stringify12-09
網(wǎng)絡(luò)運(yùn)營(yíng):如何獲取、分析數(shù)據(jù)03-24
電腦如何自動(dòng)獲取ip地址12-06