我有两个文件。一个是form.html
,另一个是form2.jsp
我希望使用form2.jsp
中的表单操作元素处理form.html
,但在form.html
中点击提交后,操作元素无效。这两个文件都在同一目录中,即webapplication中的WebContent文件夹。
<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Registration Form</title>
</head>
<body>
<form name="form" action="form2.jsp" method="get">
First Name : <input type="text" name="fname">
Last Name : <input type="text" name="lname">
<input type ="button" value="Submit" />
</form>
</body>
</html>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!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=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<%
out.println("Hello from form2'");
%>
</body>
</html>
答案 0 :(得分:1)
改变这个,
<input type ="button" value="Submit" />
使用
<input type ="submit" value="Submit" />
或
<button type="submit">Submit</Button>