1

我无法让这个脚本工作。基本上,需要网站自动转到移动网址,然后在移动网站上时,有一个链接可以返回完整的网站。

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')

链接到这个网址: http: //flagstaffchamber.com?fullsite =true

4

0 回答 0