m版页面判断安卓与ios系统

安卓系统和ios系统,在做app里面嵌入m版时,有时候会发现,ios上面的那个电池状态栏不占位置,但是安卓的状态栏占位,所以需要区分系统样式单独处理一下!

var sUserAgent=navigator.userAgent.toLowerCase();

if(sUserAgent.match(/iphone os 8/i) == "iphone os 8"){
      
}else if(sUserAgent.match(/android/i) == "android"){
      
}

上一篇:codeforces 584E Anton and Ira [想法题]


下一篇:[置顶] mybatis的批量新增