有什么区别
window.location.href="http://example.com";
window.location.replace("http://example.com");
window.location.assign("http://example.com");
我在许多论坛上看到,window.location.assign()
只是取代了当前的会话历史,因此浏览器的后退按钮将不起作用。然而,我无法复制这个。
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>