誰かが親切に私のJavaScriptの仕事を修正してもらえますか?
if (screen.width 800 =>) {
alert(".");
var redirect=confirm("You are on the mobile site. Would you like to visit our full site instead?");
if (redirect == true) {
window.location.href = 'http://TEXTHIDDEN.com/';
}
else {
return true;
}
私の目的: ユーザーが私のサイトのモバイル バージョンにアクセスすると、PC または高解像度のタブレット (幅 800 以上) を使用している場合、デスクトップ ページに移動するように求められます。
ありがとう