“Слушайте кнопку кнопки «Список событий»” Ответ

Слушайте кнопку кнопки «Список событий»

window.history.pushState({page: 1}, "", "");

window.onpopstate = function(event) {

  // "event" object seems to contain value only when the back button is clicked
  // and if the pop state event fires due to clicks on a button
  // or a link it comes up as "undefined" 

  if(event){
    // Code to handle back button or prevent from navigation
  }
  else{
    // Continue user action through link or button
  }
}
Clever Chamois

Слушатель событий Back Button JavaScript

function goBack() {
    window.location.hash = window.location.lasthash[window.location.lasthash.length-1];
 	window.location.lasthash.pop();
}
Undefined

Ответы похожие на “Слушайте кнопку кнопки «Список событий»”

Вопросы похожие на “Слушайте кнопку кнопки «Список событий»”

Больше похожих ответов на “Слушайте кнопку кнопки «Список событий»” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования