Was ist der Unterschied zwischen
window.location.href="http://example.com";
window.location.replace("http://example.com");
window.location.assign("http://example.com");
Ich habe in vielen Foren gelesen, dass window.location.assign()
nur der aktuelle Sitzungsverlauf ersetzt wird und daher die Zurück-Schaltfläche des Browsers nicht funktioniert. Ich kann dies jedoch nicht reproduzieren.
function fnSetVariable() {
//window.location.href = "http://example.com";
window.location.replace("http://example.com");
//window.location.assign("http://example.com");
}
<a onmouseover="fnSetVariable();"
href="PageCachingByParam.aspx?id=12" >
CLICK
</a>