<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>

<title>无标题文档</title>
<script type="text/javascript">

<!--
function addEvent(obj,evtType,func,cap){
cap
=cap||false;
if(obj.addEventListener){
obj.addEventListener(evtType,func,cap);
returntrue;
}
elseif(obj.attachEvent){
if(cap){
obj.setCapture();
returntrue;
}
else{
return obj.attachEvent("on"+ evtType,func);
}
}
else{
returnfalse;
}
}
function getPageScroll(){
var xScroll,yScroll;
if (self.pageXOffset) {
xScroll
= self.pageXOffset;
}
elseif (document.documentElement && document.documentElement.scrollLeft){
xScroll
= document.documentElement.scrollLeft;
}
elseif (document.body) {
xScroll
= document.body.scrollLeft;
}
if (self.pageYOffset) {
yScroll
= self.pageYOffset;
}
elseif (document.documentElement && document.documentElement.scrollTop){
yScroll
= document.documentElement.scrollTop;
}
elseif (document.body) {
yScroll
= document.body.scrollTop;
}
arrayPageScroll
=new Array(xScroll,yScroll);
return arrayPageScroll;
}
function GetPageSize(){
var xScroll, yScroll;
if (window.innerHeight && window.scrollMaxY) {
xScroll
= document.body.scrollWidth;
yScroll
= window.innerHeight + window.scrollMaxY;
}
elseif (document.body.scrollHeight > document.body.offsetHeight){
xScroll
= document.body.scrollWidth;
yScroll
= document.body.scrollHeight;
}
else {
xScroll
= document.body.offsetWidth;
yScroll
= document.body.offsetHeight;
}
var windowWidth, windowHeight;
if (self.innerHeight) {
windowWidth
= self.innerWidth;
windowHeight
= self.innerHeight;
}
elseif (document.documentElement && document.documentElement.clientHeight) {
windowWidth
= document.documentElement.clientWidth;
windowHeight
= document.documentElement.clientHeight;
}
elseif (document.body) {
windowWidth
= document.body.clientWidth;
windowHeight
= document.body.clientHeight;
}
if(yScroll < windowHeight){
pageHeight
= windowHeight;
}
else {
pageHeight
= yScroll;
}
if(xScroll < windowWidth){
pageWidth
= windowWidth;
}
else {
pageWidth
= xScroll;
}
arrayPageSize
=new Array(pageWidth,pageHeight,windowWidth,windowHeight)
return arrayPageSize;
}
/*
例子
<div >>



相关文章:

  • 2022-01-28
  • 2021-07-31
  • 2021-11-26
  • 2021-12-30
  • 2022-12-23
  • 2021-06-02
  • 2022-12-23
  • 2021-11-27
猜你喜欢
  • 2021-10-16
  • 2022-12-23
  • 2021-07-20
  • 2022-02-06
  • 2021-07-27
  • 2022-12-23
  • 2021-11-14
相关资源
相似解决方案