使用onclick跳转到其他页面/跳转到指定url
☆如果是本页显示可以直接用
location,方法如下:
①οnclick="javascript:window.location.href='URL'"
②οnclick="location='URL'"
③οnclick="window.location.href='URL?id=11'"
☆如果页面中有
frame可以将在
location前面添加
top.mainframe.frames['right_frame'].location
例:
<pre>
======
<input
type="button"value="注册"
οnclick="javascript:window.location.href='register.php'"
/>
======
</pre>