如何判断是手机端还是PC端?

利用正则去判断 navigator.useragent 是否含有 Android/webOs/iphone 等字符串,并且利用修饰符 “i” 做了不区分大小写,然后用正则的方法 test 去判断是否满足

window.location.href = /iPhone|iPad|iPod|iOS|Android/i.test(navigator.userAgent) ? "https://www.baidu.com/" :  "http://news.baidu.com/";

你可能感兴趣的:(JavaScript)