在下面的代碼,視窗VS窗口Vs的文件
document.documentElement.clientWidth
1349
document.documentElement.clientHeight
363
window.innerWidth
1366
window.innerHeight
363
window.screen.height
768
window.screen.width
1366
所以,我的桌面屏幕是1366像素寬和768像素高度。
我瞭解到,
視維正在使用document.documentElement.clientWidth
和document.documentElement.clientHeight
簡稱。
窗口尺寸使用window.innerWidth
和window.innerHeight
來引用。
1)視口和文檔有什麼不同?
2)何時window.onload
與document.onload
被調用?
相關:http://stackoverflow.com/questions/21064101/understanding-offsetwidth-clientwidth-scrollwidth-and-height-respectively – aug