如何判断是不是移动端浏览器
程序员文章站
2022-07-14 22:55:13
...
var system = {};
var userAgent = navigator.userAgent;
system.iphone = p.indexOf("iphone") !== -1;
system.android = p.indexOf("Android") !== -1;
system.iPad = p.indexOf("iPad") !== -1;
if (!system.iphone || !system.android || !system.iPad) {
// 不是移动端浏览器
}
上一篇: 如何判断当前浏览器的信息
下一篇: jQuery入门