“Escuchar el botón Back Listner” Código de respuesta

Escuchar el botón Back 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

Botón de retroceso Evento del oyente JavaScript

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

Respuestas similares a “Escuchar el botón Back Listner”

Preguntas similares a “Escuchar el botón Back Listner”

Más respuestas relacionadas con “Escuchar el botón Back Listner” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código