重新整理(参考)
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>