手机访问PC网站自动跳转到手机网站代码

楼主  收藏   举报   帖子创建时间:  2019-05-05 13:14 回复:0 关注量:570
一种比较简单的JS代码,测试可以的

  1. <p><script type="text/javascript"></p><p>try {</p><p>var urlhash = window.location.hash;</p><p>if (!urlhash.match("fromapp"))</p><p>{</p><p>if ((navigator.userAgent.match(/(iPhone|iPod|Android|ios|iPad)/i)))</p><p>{</p><p>window.location="<b><font color="#ff0000">这里填写需要跳转到的网址</font></b>";</p><p>}</p><p>}</p><p>}</p><p>catch(err)</p><p>{</p><p>}</p><p></script></p>
打赏