“O ouvinte do evento do botão traseiro JavaScript” Respostas de código

Ouça Back Button Event Listner

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

O ouvinte do evento do botão traseiro JavaScript

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

Respostas semelhantes a “O ouvinte do evento do botão traseiro JavaScript”

Perguntas semelhantes a “O ouvinte do evento do botão traseiro JavaScript”

Mais respostas relacionadas para “O ouvinte do evento do botão traseiro JavaScript” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código