美文网首页技术类
在jsp里面如何用按钮跳转

在jsp里面如何用按钮跳转

作者: 我家有个小太阳 | 来源:发表于2015-11-18 14:22 被阅读88次

    `一个登陆页面,登陆按钮是通过表单来实现,但注册按钮就是想不来用什么方法跳转到另一个页面。使用FUNCTION等多个方法后都行不通。

    经过坚持不懈的搜索,在百度一个不干起眼的角落找到了,只一句代码就OK了。

    按它的关键字又在CSDN上找到了一些,在此总结一下

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

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

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

    № <form name=ok action="xx.jsp" method=post>
      <input type="button" value="注册" onClick="goo(a,b)">
       <input type=hidden name=xx>
       <input type=hidden name=yy>
       </form>

    <script language="javascript">
       function goo(a,b){
       xx.value=a;
       yy.value=b;
       formname.submit();
       }
      </script>`

    原文链接

    相关文章

      网友评论

        本文标题:在jsp里面如何用按钮跳转

        本文链接:https://www.haomeiwen.com/subject/ihhlhttx.html