起首说明,此教程不仅仅只合适wordpress,一切的网页程序都合适
大抵的需求是:有的时刻,比方在手机装备上,输入了www.bokebu.com 想自动跳转到 m.bokebu.com 手机站点上,那末以下js代码,就能够插进去电脑站点的head上了。。。
<script>
function uaredirect(murl){
try{
if(document.getElementById("bdmark") != null) {
return
}
var urlhash = window.location.hash;
if(!urlhash.match("fromapp")){
if((navigator.userAgent.match(/(iPhone|iPod|Android|ios|iPad)/i))){
if( murl.indexOf("www.bokebu.com") ){
murl = murl.replace("www.bokebut.com","m.bokebu.com");
}
location.replace(murl);
}
}
}catch(err){}
}
uaredirect(window.location.href);
</script>

评论列表