取之盈:让手机用户访问pc电脑端网站自动跳转到手机端网站html5的代码。

    xiaoxiao2025-09-04  21

    让手机用户访问pc电脑端网站自动跳转到手机端网站html5的代码。

    把下面这个网址http://www.xxx.com/ 改为你的网址 就可以

    让手机用户访问pc电脑端网站自动跳转到手机端网站html5的代码。 <script type="text/javascript"> try { var urlhash = window.location.hash; if (!urlhash.match("fromapp")) { if ((navigator.userAgent.match(/(iPhone|iPod|Android|ios|iPad)/i))) { window.location="http://www.xxx.com/"; } } } catch(err) { } </script> 把上面这个网址http://www.xxx.com/ 改为你的网址 就可以
    最新回复(0)