window.open和window.location

window.open和window.location

window.open是打开新窗口。
window.location是将本页替换了,也就是定位。

例如:

<input   type="button"     value="转向"   onclick="window.open('default.htm')">

<input   type="button"     value="转向"    onclick="window.location='default.htm';">      

你可能感兴趣的:(window.open和window.location)