都是指< body >节点
document .body.scrollTop属性在xhtml标准网页或者更简单的说是带标签的页面里得到的结果是0,如果不要此标签则一切正常,那么在xhtml页面怎么获得body的坐标呢,使用document .documentElement来取代document .body
在监听滚动条事件中
var top=document.documentElement.scrollTop||document.body.scrollTop
这样写有很好的兼容性
都是指< body >节点
document .body.scrollTop属性在xhtml标准网页或者更简单的说是带标签的页面里得到的结果是0,如果不要此标签则一切正常,那么在xhtml页面怎么获得body的坐标呢,使用document .documentElement来取代document .body
在监听滚动条事件中
var top=document.documentElement.scrollTop||document.body.scrollTop
这样写有很好的兼容性