当前位置: 代码迷 >> Web前端 >> scrollHeight在IE和FF上的区别
  详细解决方案

scrollHeight在IE和FF上的区别

热度:38   发布时间:2012-10-26 10:30:59.0
scrollHeight在IE和FF下的区别

/**
?*调整滚屏出现的弹出div位置差别的现象,这个只在IE下才有,在ff下不用调整
?*/
function getScollTop(){
??? var eleHeight;
??? if(document.documentElement){
??? ??? eleHeight = document.documentElement.scrollHeight-document.documentElement.clientHeight ;
??? }else{
??? ??? eleHeight = document.body.scrollHeight-document.documentElement.clientHeight ;
??? }
??? return eleHeight>0?eleHeight:0;
}