//
======需引用jquery框架======//
//
返回当前页面高度
function
pageHeight(){
if
($.browser.msie){
return
document.compatMode
==
"
CSS1Compat
"
?
document.documentElement.clientHeight : document.body.clientHeight; }
else
{
return
self.innerHeight; }};
//
返回当前页面宽度
function
pageWidth(){
if
($.browser.msie){
return
document.compatMode
==
"
CSS1Compat
"
?
document.documentElement.clientWidth : document.body.clientWidth; }
else
{
return
self.innerWidth; }};
转载于:https://www.cnblogs.com/xiebin1986/archive/2010/02/20/1669877.html
转载请注明原文地址: https://mac.8miu.com/read-12906.html