這篇文章給大家介紹的內容是關於HTML實現獲取瀏覽器可視區域寬高(純代碼),有一定的參考價值,有需要的朋友可以參考一下,希望對你有所幫助。
/** * 获取浏览器可视区域宽度 */ function getViewPortOffset() { if (window.innerWidth) { return { w: window.innerWidth, h: window.innerHeight } } else if (document.compatMode = "BackCompat") { return { w: document.body.clientWidth, h: document.body.clientHeigth } } else { return { w: document.documentElement.clientWidth, h: document.documentElement.clientHeight } } } console.log(getViewPortOffset());
相關文章推薦:
以上是HTML實作擷取瀏覽器視覺區域寬高(純程式碼)的詳細內容。更多資訊請關注PHP中文網其他相關文章!