美文网首页
jsp 一个表单两个提交按钮处理

jsp 一个表单两个提交按钮处理

作者: huangxiongbiao | 来源:发表于2017-06-27 17:22 被阅读23次
<%@ page language="java" contentType="text/html; charset=GB2312"
    pageEncoding="GB2312"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GB2312">
<title>Insert title here</title>
<Script Language="JavaScript"> 
    function register() 
    { 
        /* alert("register"); */
        /* window.location.href = "${pageContext.request.contextPath}/User/register"; */
       document.forms[0].action="${pageContext.request.contextPath}/User/register"; 
       document.forms[0].submit();  
    } 
     
    function login() 
    { 
         /* alert("${pageContext.request.contextPath}/User/login"); */ 
        /* window.location.href = "${pageContext.request.contextPath}/User/login";  */
        document.forms[0].action="${pageContext.request.contextPath}/User/login"; 
        document.forms[0].submit(); 
    } 
</Script>
</head>
<body>
<body>
    <p>${message}</p>
    <form method="post">
        <fieldset>
        <legend>用户登录</legend>
            <p>
                <label>姓名:</label> <input type="text" id="name" name="name"
                    tabindex="1">
            </p>
            <p>
                <label>密码:</label> <input type="text" id="password" name="password"
                    tabindex="2">
            </p>
            <p id="buttons">
                
                <!-- <input id="register"  name="action" type="submit" tabindex="3" value="注册">
                <input id="submit" name="action" type="submit" tabindex="4" value="登录"> -->
                <input Type="Button" name="Modify" value="注册" onClick="register()"> 
                <input Type="Button" name="Delete" value="登录" onClick="login()"> 
            </p>
        </fieldset>
    </form>
</body>
</body>
</html>

相关文章

  • SpringMVC+Thymeleaf 处理表单提交

    SpringMVC+Thymeleaf 处理表单提交 thymleaf处理表单提交的方式和jsp有些类似,也有点不...

  • SpringMVC+Thymeleaf 处理表单提交

    SpringMVC+Thymeleaf 处理表单提交 thymleaf处理表单提交的方式和jsp有些类似,也有点不...

  • jsp 一个表单两个提交按钮处理

  • spring MVC redirect页面重定向

    为了防止表单重复提交,我们通常会使表单重定向 创建Controller类 两个jsp文件 index.jsp fi...

  • HTML表单

    HTML表单 input 标签 两个单行文本框和一个提交按钮的表单 直接点击 Submit 按钮, 表单数据将会被...

  • 表单 - 提交按钮

    定义用于向表单处理程序(form-handler)提交表单的按钮。表单处理程序通常是包含用来处理输入数据的脚本的服...

  • 表单

    表单基础 提交表单 Tips: 解决重复提交表单的问题的两个方法1)在第一次提交表单后就禁用提交按钮2)利用ons...

  • JavaScript关于表单脚本的一些实用技巧

    避免多次提交表单 以上代码为表单的submit事件添加了一个事件处理程序. 事件触发后, 代码取得了提交按钮, 并...

  • form表单提交

    单位后台管理系统,开发表单提交,因为是二次开发,有很多限制,这个不表需求是表单提交,两个按钮: 一个保存按钮,一个...

  • 使用Flask-WTF处理表单

    在某些情况下,需要为一个表单添加多个提交按钮。比如在用户登录页面的表单中,存在登录按钮和在注册按钮。当用户提交表单...

网友评论

      本文标题:jsp 一个表单两个提交按钮处理

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