重新整理(參考)
window.location.reload();
<a href="javascript:window.location.reload()">重新整理</a>
<a href="#" onclick="javascript:window.location.reload()">重新整理</a>
開新視窗(參考)
window.open(' 新視窗的網址 ', '新視窗的名稱', config='height=高度,width=寬度');
window.open('ecpay/sample_CvsMap.php', '電子地圖', config='height=800,width=1020');
<a href="#" onclick="window.open(' http://tw.yahoo.com ', 'Yahoo', config='height=500,width=500');">開新視窗</a>
關閉視窗(參考)
window.close();
文字型:<a href="javascript:window.close();">關閉視窗</a>
按鈕型:<input onclick="window.close();" value="關閉視窗" type="button">
回上一頁與下一頁(參考)
window.history.back();
window.history.forward();
<center><input type="button" onclick="window.history.back()" value="回到上一頁"></center>
<center<input type ="button" onclick="window.history.forward()" value="回到下一頁"></center>