/** * 获取浏览器可视区域宽度 */ 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中文网其它相关文章!
……