scrollTop在使用的時候,如果用document.body.scrollTop去使用它,谷歌會出現不兼容的問題,也就是不顯示數值大小
解決方案:1.換個瀏覽器使用
2.沒有dtd約束的:document.title = document.body.scrollTop
有dtd約束的:document.title = document.documentElement.scrollTop
兼容性寫法:document.title = document.body.scrollTop || document.documentElement.scrollTop ||window.pageYoffset
