js 判断如果是移动端就自动跳转到 移动端的页面上去
<script> !(function(){ const userAgent=naviator.userAgent; const android=userAgent.match(/(Android);?[\s\/]+([\d.]+)?/); const iphone=userAgent.match(/(iPone\sOS)\s([\d_]+)/); if(android||iphone){ location.href='http://m.itcast.cn' } })(); //解释 上面那个funcion前面加个感叹号其实也是一种立即执行函数的写法。 //立即执行函数的写法 :方式1、最前最后加括号 方式2、function外面加括号 方式3、function前面加运算符,常见的是!与void //详细可以查看这个文章 https://www.jianshu.com/p/d009eefd2ba1 </script>
标签:function,const,js,跳转,userAgent,移动 From: https://www.cnblogs.com/tomcat2022/p/17660987.html