js判断是否是移动设备
程序员文章站
2022-06-11 13:30:18
...
根据window对象的navigator属性,可定义isMobile方法
function isMobile(){
if( navigator.userAgent.match(/Android/i)
|| navigator.userAgent.match(/webOS/i)
|| navigator.userAgent.match(/iPhone/i)
|| navigator.userAgent.match(/iPad/i)
|| navigator.userAgent.match(/iPod/i)
|| navigator.userAgent.match(/BlackBerry/i)
|| navigator.userAgent.match(/Windows Phone/i)
)return true;
return false;
}