jsでブラウザバックで戻るときに警告
window.addEventListener("beforeunload", function (e) {
var confirmationMessage = "beforeunload"
e.returnValue = confirmationMessage; // Gecko and Trident
return confirmationMessage; // Gecko and WebKit
});