首页 > 网站 > 建站经验 > 正文

利用百度Site App代码判断手机访问

2024-04-25 20:46:39
字体:
来源:转载
供稿:网友

利用百度Site App的代码判断手机访问自动转到博客手机版页面

  1. <script src="http://siteapp.baidu.com/static/webappservice/uaredirect.js" type="text/javascript"></script><script type="text/javascript">uaredirect("http://m.lxd.cc 这个改为你的手机版本网址");</script> 

只要把这个代码添加到模版的头部就可以了。(</head>之前)

附uaredirect.js源码:
 

  1. function uaredirect(f){try{if(document.getElementByIdx_x("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}}}}; 


 


注:相关教程知识阅读请移步到建站经验频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表