JS辨别访问浏览器判断是android还是ios系统

如题所述

var ua = navigator.userAgent.toLowerCase();
if (/iphone|ipad|ipod/.test(ua)) {
//alert("iphone");
} else if (/android/.test(ua)) {
alert("android");
}
温馨提示:内容为网友见解,仅供参考
无其他回答
相似回答