pc跳转移动端域名替换

1.  写在js里的电脑手机端跳转  只需加载该js即可
// JavaScript Document
function urlredirect() {

var sUserAgent = navigator.userAgent.toLowerCase();	
if ((sUserAgent.match(/(ipod|iphone os|midp|ucweb|android|windows ce|windows mobile)/i))) {
// 只适用盘古建站,PC跳转移动端
//var thisUrl = window.location.href;
var host = window.location.host;
//var host2=document.domain; 
//window.location.href = thisUrl.substr(0,thisUrl.lastIndexOf('/')+1)+'wap/';
//alert(window.location.host);
window.location.href="http://"+host+"/index.php?m=Cnm";

}
}
urlredirect();


或者进行域名替换
    <script>
        window.onload=jstiao();  //自动加载


        function jstiao(){

            var widths = window.screen.availWidth;
            if(widths > 1000){  //屏幕尺寸宽度小于1000,则执行域名替换,跳转
                var domain = window.location.host; //获取当前域名

                var url = document.location.toString();  //获取当前url

                var result = url.replace(domain, "W3School");


                window.location.href = result;
            }
        }
        
    </script>

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值