別のページにリダイレクトするときに「このページを離れてください」アラートを抑制することは可能ですか?
jQuery 通知ポップアップApprise v2を使用しています。ポップアップ ボックスの [OK] ボタンをクリックすると、次のコードが実行されます。
if (window.location.protocol != "https:") {
//window.location.href ="https://" + location.hostname + '/thank-you';
window.location.replace("https://" + location.hostname + '/thank-you');
} else {
//window.location.href ='/thank-you';
window.location.replace("/thank-you");
}
上記のように、window.location.hrefとwindow.location.replaceの両方を試しましたが、同じアラート ボックスが表示されます。