1,在新窗口中打开
window.open('要打开页面的url')
示例:
1),<a href="#" onClick="window.open('要打开页面的url','','height=500,width=611,scrollbars=yes,status =yes')" >新页面</a >
2),<input type="button" onClick="window.open('要打开页面的url','','height=500,width=611,scrollbars=yes,status =yes')" value="新页面" / >
2,在原窗口跳转
window.location.href="要跳转页面的url";
示例:
1),<a href="#" onClick="window.location.href='要跳转页面的url'" >新页面</a >
2),<input name="tz" type="button" value="跳转" onClick="location.href='要跳转页面的url'" >
3,返回上一页
window.history.back(-1)
示例:
1),<a href="#" onclick="javascript:history.go(-1)" >返回上一页</a >
2),<input type="button" onClick="javascript:history.go(-1)" value="返回上一页" / >