document.body.scrollTop一直为0

E6 and DTD 4.01 requires you to use document.documentElement in stead of document.body, so u will need somthing like the below:

if (document.documentElement && !document.documentElement.scrollTop)
// IE6 +4.01 but no scrolling going on
else if (document.documentElement && document.documentElement.scrollTop)
// IE6 +4.01 and user has scrolled
else if (document.body && document.body.scrollTop)

 

引用自:http://www.cnblogs.com/BlackSoul/archive/2006/08/08/471207.html

你可能感兴趣的:(html)