我无法使用此脚本。基本上,需要网站自动转到移动网址,然后在移动网站上,有一个链接返回完整网站。
if ((navigator.userAgent.match(/(iPad)|(iPhone)|(iPod)|(android)|(webOS)|(Windows Phone)|(BlackBerry)/i))) {
document.location = "http://domainame.com/mobile";
(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
}
})(navigator.userAgent || navigator.vendor || window.opera, 'http://domainname.com/mobile')