标签:对象 off function fun javascrip lse 不可 .com 基本数据
function getScrollOffset(){
if(window.pageXOffset){
return{
x:window.pageXOffset,
y:window.pageYOffset
}
}else{
return{
x:document.documentElement.scrollLeft,
y:document.documentElement.scrollTop
}
}
}
function getViewportOffset(){
if(window.innerHeight){
return{
width:window.innerWidth,
height:window.innerHeight
}
}else{
if(document.compatMode == 1){
return{
width:document.documentElement.clientWidth,
height:document.documentElement.clientHeght
}
}else{
return{
width:document.body.clientWidth,
height:document.body.clientHeght
}
}
}
}
标签:对象 off function fun javascrip lse 不可 .com 基本数据
原文地址:https://www.cnblogs.com/chenyingjie1207/p/10019354.html