Posted in Javascript onDecember 01, 2007
在标准的浏览器下,需要注意的东西,例如双击自动滚动
var diffY;
if (document.documentElement && document.documentElement.scrollTop)
diffY = document.documentElement.scrollTop;
else if (document.body)
diffY = document.body.scrollTop
else
{/*Netscape stuff*/}
document.documentElement && document.documentElement.scrollTop
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@