1. 程式人生 > >獲取視窗可視高度window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight

獲取視窗可視高度window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight

對於Internet Explorer、Chrome、Firefox、Opera 以及 Safari: 
window.innerHeight – 瀏覽器視窗的內部高度 
window.innerWidth – 瀏覽器視窗的內部寬度 

對於 Internet Explorer 8、7、6、5: 
document.documentElement.clientHeight 
document.documentElement.clientWidth 
或者 
document.body.clientHeight 
document.body.clientWidth