我在 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');
}