我正在使用此脚本将移动用户重定向到移动页面,并使他们能够返回完整的网站
(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用户 脚本有什么问题?