移动重定向' fullsite' cookie总是重定向

时间:2014-04-25 07:11:19

标签: javascript redirect

我正在使用此脚本将移动用户重定向到移动页面,并使他们能够返回完整的网站

(function(a,b) {

    if (document.cookie.indexOf('fullsite') > -1) {
        return; // skip redirect
    }
    if (location.search.indexOf('fullsite') > -1) {
        document.cookie = 'fullsite=true; path=/;'
        return; // skip redirect
    } 
    if (mobile regexp) {
        window.location = b;
    }
})(navigator.userAgent || navigator.vendor || window.opera, 'desired.mobile.url')

问题是,除非网址是pageurl.com/fullsite,否则它会重定向PC用户 脚本有什么问题?

0 个答案:

没有答案