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是將本頁替換了,也就是定位。
例如:
<input type="button" value="轉向" onclick="window.open('default.htm')">
<input type="button" value="轉向" onclick="window.location='default.htm';">