jsp发出表单
login_operator.jsp
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>插入业务员</title>
</head>
<link rel="stylesheet" href="style.css">
<body>
<div class="login_bg" id="login">
<form action="login_proc.jsp" method="post" >
<label class="login_title">插入业务员</label>
<label for="login_id" >业务员账户</label>
<input type="text" name="id" class="login_id" id="login_id" autocomplete="off" >
<label for="login_pwd" >业务员密码</label>
<input type="password" name="pwd" class="login_pwd" id="login_pwd" autocomplete="off" >
<button type="submit">注册</button>
</form>
<script src="login_proc.jsp"></script>
</div>
</body>
</html>
来源:CSDN
作者:student account
链接:https://blog.csdn.net/jzlStudent/article/details/103595433