這里只做一些收錄,不進(jìn)行具體分析等
瀏覽器窗口的尺寸
Internet Explorer撮奏、Chrome、Firefox剂桥、Opera,Safari:
window.innerHeight - 瀏覽器窗口的內(nèi)部高度
window.innerWidth - 瀏覽器窗口的內(nèi)部寬度
/*
這兩個是在chrome瀏覽器調(diào)試器中測試
console.log(window.innerHeight)
//950
console.log(window.innerWidth)
//1125
*/
IE8 及以下
document.documentElement.clientHeight
document.documentElement.clientWidth
document.body.clientHeight
document.body.clientWidth