document.documentElement && document.documentElement.scrollTop_javascript技巧
程序员文章站
2022-04-24 20:18:35
...
在标准的浏览器下,需要注意的东西,例如双击自动滚动
var diffY;
if (document.documentElement && document.documentElement.scrollTop)
diffY = document.documentElement.scrollTop;
else if (document.body)
diffY = document.body.scrollTop
else
{/*Netscape stuff*/}