所有浏览器的window.href

Shy*_*yju 21 javascript cross-browser

如何替换window.href = "someurlhtml"firefox和IE支持?

War*_*ung 46

window.location.href = "someurl";
Run Code Online (Sandbox Code Playgroud)


Gre*_*reg 11

您使用location对象:

window.location.href = 'some.html';
Run Code Online (Sandbox Code Playgroud)

或者干脆

location.href = 'some.html';
Run Code Online (Sandbox Code Playgroud)