<code id='C920B54167'></code><style id='C920B54167'></style>
    • <acronym id='C920B54167'></acronym>
      <center id='C920B54167'><center id='C920B54167'><tfoot id='C920B54167'></tfoot></center><abbr id='C920B54167'><dir id='C920B54167'><tfoot id='C920B54167'></tfoot><noframes id='C920B54167'>

    • <optgroup id='C920B54167'><strike id='C920B54167'><sup id='C920B54167'></sup></strike><code id='C920B54167'></code></optgroup>
        1. <b id='C920B54167'><label id='C920B54167'><select id='C920B54167'><dt id='C920B54167'><span id='C920B54167'></span></dt></select></label></b><u id='C920B54167'></u>
          <i id='C920B54167'><strike id='C920B54167'><tt id='C920B54167'><pre id='C920B54167'></pre></tt></strike></i>

          
          当前位置:首页 > js实现手机访华体育app官网登录问网页自动跳转到手机移动页面Kaiyun体育APP入口

          js实现手机访华体育app官网登录问网页自动跳转到手机移动页面Kaiyun体育APP入口

          并据此跳转到对应的手机移动网页,通常可以通过检查​​navigator.userAgent​​属性来识别用户代理字符串中包含的设备信息。

          将以下js代码添加到你的js文件中即可。两个js代码(选其一)域名地址改为自己。可以通过JavaScript实现自动检测用户是否使用移动设备访问网页,将以下代码添加在网站的头部

          <script type="text/javascript"华体育app官网登录 src="http://www.bokequ.com/kanqq/js/uaredirect.js"></script><script type="text/javascript">uaredirect("http://m.bokequ.com");</script>

          Kaiyun体育APP入口

          现在很多网站的前端布局都是响应式设计,但也有网站既包含PC端页面,

          var mobileAgent = new Array("iphone", "ipod", "ipad", "android", "mobile", "blackberry", "webos", "incognito", "webmate",       "bada", "nokia", "lg", "ucweb", "skyfire");        var browser = navigator.userAgent.toLowerCase();         var isMobile = false;         for (var i=0; i<mobileAgent.length; i++) {            if (browser.indexOf(mobileAgent[i])!=-1) {                 isMobile = true;                 location.href = 'http://m.bokequ.com/';                break;             }         }

          js代码二、就要实现打开手机端自动跳转手机页面的方法。独立Kaiyun体育APP入口体育app官网登录添加的,可以加在

          <script type="text/javascript"></script>里

          js代码一、又包括手机端页面时,

          (function(){var reWriteUrl=function(url){if(url){var Splits=url.split("/"),siteName=window.location.pathname;if(typeof siteName!=="undefined"){return "http://m.bokequ.com}}};if(/Android|webOS|iPhone|iPad|Windows Phone|iPod|BlackBerry|SymbianOS|Nokia|Mobile/i.test(navigator.userAgent)){var url=window.location.href;var pathname=window.location.pathname;if(url.indexOf("?pc")<0){try{window.location.href=reWriteUrl(url)}catch(e){}}}})();

          js代码三、

          分享到: