现在的位置: 首页 > 综合 > 正文

jsp页面跳转方式

2018年05月05日 ⁄ 综合 ⁄ 共 290字 ⁄ 字号 评论关闭

<input type="button" value="注册" onClick="window.location.href=&apos;register.jsp&apos;">
(
在当前页面打开reg.jsp)

<input type="button" value="注册" onclick="javascript:location.href=&apos;reg.jsp&apos;">
(
在当前页面打开reg.jsp)

<input type="button" value="注册"  onclick="window.open(&apos;reg.jsp&apos;)">
(
在新的页面打开reg.jsp)

抱歉!评论已关闭.