1
關於瀏覽器默認返回按鈕行爲。例如,我的應用程序有一個特殊情況,可以在某些情況下忽略它。 我有模態,如果模態打開,而不是回去只是關閉模態。 我不知道,如果它找了一個小時終於找到了解決這個問題之後,可能有任何幫助如何獲取瀏覽器返回按鈕事件並阻止默認行爲
function keyEventClose(event){
var status = $('#myModal').is(':visible');
if(status){
//prevent from going back just close the modal
$('#myModal').modal('hide');
}else{
//go back as default
window.history.back();
}
}
非常[精心製作](https://www.irt.org/script/311.htm) – crowchirp