IE 中document.body.scrollTop 總是0,即使在滾動時
當您在移動滑鼠時,在狀態列中顯示document.body.scrollTop 的值。在 IE 中,該值始終為 0。為什麼它總是 0?有其他方法可以獲得滾動條移動了多少嗎?
要解決此問題,對於 IE 中較舊的文件類型,可以嘗試以下方法:
var top = (document.documentElement && document.documentElement.scrollTop) || document.body.scrollTop;
以上是為什麼 IE 中的 document.body.scrollTop 總是 0,即使在滾動時也是如此?的詳細內容。更多資訊請關注PHP中文網其他相關文章!