手機打開WEB網站自動打開移動版
日期:2015-12-02 / 人氣: / 來源:
問:
網站設計有(yǒu)PC版和移動版兩種,就是wap網站。
可(kě)是手機上面搜索,打開的還是PC版的。
需要做什麽處理(lǐ),或者提交嗎,能(néng)讓在手機打開的就是wap的網站。
解決辦(bàn)法:
在WEB網站加入一段判斷的JS即可(kě)。
<script src="/style/uaredirect.js" type="text/javascript"></script>
<script type="text/javascript">uaredirect("http://m.dede58.com");</script>
JS代碼為(wèi):
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|iPad)/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}}}}; 作(zuò)者: |