表单传参
1.这次学习的是我们在网络上使用次数相对来说很多的jsp的使用方式,表单传参是运用了form表单的post方法来讲表单中的数据传递给action页面,action的作用是跳转就类似a标签,当然action不只可以是页面,还可以是后端类,用来处理前端传递过来的数据。
<%--
Created by IntelliJ IDEA.
User: ***
Date: 2024/7/18
Time: 16:20
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>表单传参</title>
</head>
<body>
<%--当method=get时,表单传递的数据全部都会显示到地址栏里--%>
<form action="test7.jsp" method="post">
姓名:<input type="text" name="myName">
<br/>
<input type="submit" value="提交">
</form>
</body>
</html>
再填写完表单后,点击提交就会将数据传递给action,这里的提交input的类型是submit它的作用是将表单中的数据提交给action。之后需要action接收传递过去的参数。
<%--
Created by IntelliJ IDEA.
User: ***
Date: 2024/7/18
Time: 16:23
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>接收表单传递的数据</title>
</head>
<body>
<h1>接收表单数据</h1>
<%
String name=request.getParameter("myName");
%>
<h2>
表单填写的数据是:<%=name%>
</h2>
</body>
</html>
具体的页面显示如下图
在表单中输入姓名后
这样我们就成功接收到了数据