标签:ref 屏幕 调用 roi webapp 终端 and os x 高度
var isAndroid = u.indexOf(‘Android‘) > -1|| u.indexOf(‘Linux‘) > -1; //android终端或者uc浏览器
var isiOS = !!u.match(/\(i[^;]+;( U;)?CPU.+Mac OS X/);//ios终端
if (isAndroid) {//安卓端加载页面时调用
$(".main").css("height", window.screen.height -$(".navBar").outerHeight(true) * 2 -33)
} else if (isiOS){//IOS端加载页面时调用
$(".main").css("height", window.screen.height -$(".navBar").outerHeight(true) * 2) ?
}?
在webapp内,用window.screen.height获取屏幕高度时,不同系统差是33左右。
有不准确的地方还请指教?
标签:ref 屏幕 调用 roi webapp 终端 and os x 高度
原文地址:http://www.cnblogs.com/myRain/p/6047028.html