详情页

帝国cmsPC页面跳转到wap移动端代码/万能移动适配代码

时间:2024年04月11日

编辑:佚名

<script type="text/javascript">
    (function(){
        var ua = navigator.userAgent.toLowerCase();
        var bIsIpad = ua.match(/ipad/i) == "ipad";
        var bIsIphoneOs = ua.match(/iphone os/i) == "iphone os";
        var bIsAndroid = ua.match(/android/i) == "android";
        var bIsWM=ua.match(/windows mobile/i)=="windows mobile";
        var host = "<?=$public_r['add_zhan_murl']?>";
        var pathname = window.location.pathname;
        if(bIsIpad||bIsIphoneOs||bIsAndroid||bIsWM){
            window.location.href =host + pathname;
        }
    })();
</script>
注:此代码适用于PC/WAP除了域名,后缀参数都一样。
比如:
PC :  http://1333wan.78moban.com/game/219.html
WAP:http://m.1333wan.78moban.com/game/219.html
相关文章
猜你需要