JS 兼容大全
Posted 我要成为酷酷的人
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS 兼容大全相关的知识,希望对你有一定的参考价值。
//获取浏览器可视区宽度 function getWidth() { if (window.innerWidth){ return window.innerWidth; } else{ if (document.compatMode == "CSS1Compat"){ return document.documentElement.clientWidth; } else{ return document.body.clientWidth; } } }
//获取浏览器可视区高度 function getWidth() { if (window.innerHeight){ return window.innerHeight; } else{ if (document.compatMode == "CSS1Compat"){ return document.documentElement.clientHeight; } else{ return document.body.clientHeight; } } }
//获取浏览器卷曲高度 function getscrollTop() { return document.documentElement.scrollTop || document.body.scrollTop; }
未完,待续...
以上是关于JS 兼容大全的主要内容,如果未能解决你的问题,请参考以下文章