码迷,mamicode.com
首页 > 其他好文 > 详细

取不同浏览器可视区域宽高方法

时间:2018-10-05 19:23:50      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:getview   uri   mil   width   height   fun   cdc   mono   cli   

function getViewportOffset(){
if(window.innerWidth){
return {
w:window.innerWidth,
t:window.innerHeight
}
}else if(document.compatMode == "BackCompat"){
return {
w:document.body.clientWidth,
t:document.body.clientHeight
}
}else{

return {
w:document.documentElement.clientWidth,
t:document.documentElement.clientHeight
}
}
}

取不同浏览器可视区域宽高方法

标签:getview   uri   mil   width   height   fun   cdc   mono   cli   

原文地址:https://www.cnblogs.com/hilxj/p/9745554.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!