0

私はjqueryで素敵なコードを作成しました。それは画面上のピクセルをチェックし、すぐに適切なバージョンにリダイレクトします

しかし、無効化された JavaScript をサポートする必要があり、「javascript で javascript が無効になっているかどうかを確認するにはどうすればよいですか?」という問題に行き詰まりました。愚かな権利

ビューポートについて聞いたことがありますが、実際にインデックスにリダイレクトできるかどうかはわかりません

var w = $(this).width();
        var h = $(this).height();
        if (w > 310 && w > 190 && h > 310)
        {
                alert('Tiny basic html Version <310x<310');

        }
        else if (w > 310 && w <= 800 && h > 480 && h < 1800)
        {// only if its not a desktop like windows or mac or linux or any other mature browser
        //only mobile detection here and other stuff
                alert('SmartPhone Version <800x>480');

        }
        if (w > 800 && w < 3500 && h < 3000)
        {//if its mobile os redirect to the smarphone version no matter how big that tablet is unless option

            alert('Large Desktop with OS detection');

        }
4

1 に答える 1