Le bouton Précédent provoque simplement l'actualisation de ma page. Y at-il un moyen de contourner cela sans désactiver le cache?Le bouton de retour du navigateur ne fonctionne pas dans l'environnement mis en cache
1
A
Répondre
1
Essayez d'ajouter ceci à votre tête HTML:
<META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
<META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE">
0
où vous cliquez sur le produit/image page Appel onclick fonction javascript-à-dire
function getHashOnBack(valueget)
{
location.hash = "#backTo=" + $(window).scrollTop();$(document).height();
}
Maintenant, mettez
$(document).ready(function()
{
var ab = window.location.hash.substring(1).split("=");
if (ab[0] == "backTo")
{
// this would be called automatically when back putton pressed and hav #back=1234 etc. // value in url
$(window).scrollTop(parseInt(ab[1]));
}
}
ok cela affectera-t-il la mise en cache sur la page im retournant aussi? – cduggan