20180530_《Javascript获取网页大,元素位置(摘)》
Posted Stay foolish, stay hungry!
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了20180530_《Javascript获取网页大,元素位置(摘)》相关的知识,希望对你有一定的参考价值。
function getViewport(){ if (document.compatMode == "BackCompat"){ return { width: document.body.clientWidth, height: document.body.clientHeight } } else { return { width: document.documentElement.clientWidth, height: document.documentElement.clientHeight } } }
//js 获取元素位置方法 getBoundingClientRect()
以上是关于20180530_《Javascript获取网页大,元素位置(摘)》的主要内容,如果未能解决你的问题,请参考以下文章
Web前端大作业—个人网页(html+css+javascript)