欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

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*/}