onClick新窗口打开和在本窗口打开的方法
有时我们需要在通过点击一个按钮来跳转到另一个页面,但打开的页面有时需要在新窗口打开,有时却需要在本窗口打开。下边说一下这两种的使用方法:
需要在新窗口打开使用第一种方法,需要在本窗口打开使用第二种方法
1、 onClick="window.open(''/reg.asp'')"
2、 onClick="location.href=''/reg.asp'';"
注:reg.asp更改为您需要的页面
<input onClick="location.href='/reg.asp';" name="button2" type="button" id="button2" value="在本窗口打开页面" />
<input onClick="window.open('/reg.asp')" name="button1" type="button" id="button1" value="在新窗口打开页面" />
需要在新窗口打开使用第一种方法,需要在本窗口打开使用第二种方法
1、 onClick="window.open(''/reg.asp'')"
2、 onClick="location.href=''/reg.asp'';"
注:reg.asp更改为您需要的页面
<input onClick="location.href='/reg.asp';" name="button2" type="button" id="button2" value="在本窗口打开页面" />
<input onClick="window.open('/reg.asp')" name="button1" type="button" id="button1" value="在新窗口打开页面" />