黑帽联盟

标题: 百度判断手机终端并自动跳转js代码 [打印本页]

作者: yun    时间: 2017-7-7 22:34
标题: 百度判断手机终端并自动跳转js代码
百度目前为站长提供了判断手机终端类型并自动实现跳转的js脚本,极大的方便了广大站长及web开发人员。其js脚本的使用方法极其简单。

代码:
  1. <script src="http://siteapp.baidu.com/static/webappservice/uaredirect.js" type="text/javascript"></script>
  2. <SCRIPT type=text/javascript>uaredirect("手机站","WEB站");</SCRIPT>
复制代码
核心的js脚本格式化代码如下所示:
  1. function uaredirect(f) {
  2.     try {
  3.         if (document.getElementById("bdmark") != null) {
  4.             return
  5.         }
  6.         var b = false;
  7.         if (arguments[1]) {
  8.             var e = window.location.host;
  9.             var a = window.location.href;
  10.             if (isSubdomain(arguments[1], e) == 1) {
  11.                 f = f + "/#m/" + a;
  12.                 b = true
  13.             } else {
  14.                 if (isSubdomain(arguments[1], e) == 2) {
  15.                     f = f + "/#m/" + a;
  16.                     b = true
  17.                 } else {
  18.                     f = a;
  19.                     b = false
  20.                 }
  21.             }
  22.         } else {
  23.             b = true
  24.         }
  25.         if (b) {
  26.             var c = window.location.hash;
  27.             if (!c.match("fromapp")) {
  28.                 if ((navigator.userAgent.match(/(iPhone|iPod|Android|ios)/i))) {
  29.                     location.replace(f)
  30.                 }
  31.             }
  32.         }
  33.     } catch(d) {}
  34. }
  35. function isSubdomain(c, d) {
  36.     this.getdomain = function(f) {
  37.         var e = f.indexOf("://");
  38.         if (e > 0) {
  39.             var h = f.substr(e + 3)
  40.         } else {
  41.             var h = f
  42.         }
  43.         var g = /^www\./;
  44.         if (g.test(h)) {
  45.             h = h.substr(4)
  46.         }
  47.         return h
  48.     };
  49.     if (c == d) {
  50.         return 1
  51.     } else {
  52.         var c = this.getdomain(c);
  53.         var b = this.getdomain(d);
  54.         if (c == b) {
  55.             return 1
  56.         } else {
  57.             c = c.replace(".", "\\.");
  58.             var a = new RegExp("\\." + c + "$");
  59.             if (b.match(a)) {
  60.                 return 2
  61.             } else {
  62.                 return 0
  63.             }
  64.         }
  65.     }
  66. };
复制代码
建议站长及web开发人员使用如下压缩后的js脚本
  1. function uaredirect(f){try{if(document.getElementById("bdmark")!=null){return}var b=false;if(arguments[1]){var e=window.location.host;var a=window.location.href;if(isSubdomain(arguments[1],e)==1){f=f+"/#m/"+a;b=true}else{if(isSubdomain(arguments[1],e)==2){f=f+"/#m/"+a;b=true}else{f=a;b=false}}}else{b=true}if(b){var c=window.location.hash;if(!c.match("fromapp")){if((navigator.userAgent.match(/(iPhone|iPod|Android|ios)/i))){location.replace(f)}}}}catch(d){}}function isSubdomain(c,d){this.getdomain=function(f){var e=f.indexOf("://");if(e>0){var h=f.substr(e+3)}else{var h=f}var g=/^www\./;if(g.test(h)){h=h.substr(4)}return h};if(c==d){return 1}else{var c=this.getdomain(c);var b=this.getdomain(d);if(c==b){return 1}else{c=c.replace(".","\\.");var a=new RegExp("\\."+c+"$");if(b.match(a)){return 2}else{return 0}}}};
复制代码

作者: pangkee    时间: 2017-7-8 00:59
这下百度要收录js了!

作者: feihu    时间: 2017-7-8 15:03
这个得看看哈




欢迎光临 黑帽联盟 (https://bbs.cnblackhat.com/) Powered by Discuz! X2.5