概述
var VersionMobile = "";//手机版本号
function is_weixin_bc() {
if(is_weixin()) {
return true;
} else {
return true;
}
}
function is_weixin() {
var ua = navigator.userAgent.toLowerCase();
if(ua.indexOf("android") > 0) {
VersionMobile = "android";
} else if(ua.indexOf("ios") > 0) {
VersionMobile = "ios";
} else if(ua.indexOf("iPhone") > 0 || ua.indexOf("iphone") > 0) {
VersionMobile = "iPhone";
} else if(ua.indexOf("iPad") > 0 || ua.indexOf("ipad") > 0) {
VersionMobile = "iPad";
} else {
VersionMobile = "";
}
if(ua.match(/MicroMessenger/i) == "micromessenger") {
return true;
} else {
return false;
}
}
最后
以上就是雪白咖啡为你收集整理的js 判断手机机型(例子为返回微信机型)的全部内容,希望文章能够帮你解决js 判断手机机型(例子为返回微信机型)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复