1

このスクリプトを機能させることができません。基本的には携帯のURLに自動的に移動するサイトが必要ですが、携帯サイトの場合はフルサイトに戻るリンクがあります。

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

この URL へのリンク: http://flagstaffchamber.com?fullsite=true

4

0 に答える 0