Как отключить кнопку возврата браузера после предупреждения окна
I need disable the browser back button after the window alert. in page1.aspx i put like this After in Page2.aspx I put alert message when button click.once close the alert message i press the back button. same alert show when each click of back button. (How to prevent the alert message when back button press)
Что я уже пробовал:
**$(document).ready(function () { function disableBack() { window.history.forward() } window.onload = disableBack(); window.onpageshow = function (evt) { if (evt.persisted) disableBack() } });**
Madhukar Krishna
Попробовать это
функция preventBack() { window.history.forward(); }
setTimeout("preventBack()", 0);
window.onunload = function () { null };