window.location.href = /Android|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent) ? "https://www.baidu.com/" : "http://news.baidu.com/"; |
以上代码利用了正则表达式和三目运算符,含义就是如果是移动端打开的话那就跳转到 https:www.baidu.com/
,如果不是就跳转到http://new.baidu.com/
,这个看不懂的话,那我下面这样写就很容易理解了吧
if(/Android|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent)) { |