J'ai essayé de contrôler le bouton de retour mais je ne peux pas. Ici;
Prenez le contrôle du bouton de retour matériel jquery mobile
event.keyCode == 27 //thats for escape
event.keyCode == 8 //thats for backspace..its also working on browser but it doesnt work on my tablet.
Aucune suggestion??
Méthode recommandée
pagecontainerbeforechange
: https://jqmtricks.wordpress.com/2014/12/01/detect-back-navigation/
Vous devez écouter navigation
événement et state.direction
.
$(window).on("navigate", function (event, data) {
var direction = data.state.direction;
if (direction == 'back') {
// do something
}
if (direction == 'forward') {
// do something else
}
});
API jQM: événement de navigation
Vous pouvez le faire sans Jquery mobile
window.addEventListener("hashchange", function(e) {
if(e.oldURL.length > e.newURL.length)
alert("back")
});
<a href="#p2">goto page 2</a> and then use browser's navigation.</div>
Et aussi Démo dans codepen