Temo che possa essere impossibile ma esiste un modo per modificare il valore hash di un URL senza lasciare una voce nella cronologia del browser e senza ricaricare ? O fare l'equivalente?
Per quanto riguarda le specifiche, stavo sviluppando una navigazione hash di base sulla falsariga di:
//hash nav -- works with js-tabs
var getHash = window.location.hash;
var hashPref = "tab-";
function useHash(newHash) {
//set js-tab according to hash
newHash = newHash.replace('#'+hashPref, '');
$("#tabs li a[href='"+ newHash +"']").click();
}
function setHash(newHash) {
//set hash according to js-tab
window.location.hash = hashPref + newHash;
//THIS IS WHERE I would like to REPLACE the location.hash
//without a history entry
}
// ... a lot of irrelavent tabs js and then....
//make tabs work
$("#tabs.js-tabs a").live("click", function() {
var showMe = $(this).attr("href");
$(showMe).show();
setHash(showMe);
return false;
});
//hash nav on ready .. if hash exists, execute
if ( getHash ){
useHash(getHash);
}
Utilizzando jQuery, ovviamente. L'idea è che in questa specifica istanza 1) fare in modo che l'utente torni indietro a ogni modifica della scheda potrebbe effettivamente `` rompere il pulsante Indietro '' accumulando riferimenti inutili e 2) non mantenere la scheda su cui si trova attualmente se si preme l'aggiornamento è un fastidio.