我需要编写 2 个具有以下属性的网页:
- 表单(决定这应该是 html 还是 jsp 文件)。
表单包含一个带有两个字段的 HTML 表单:一个文本输入(称为“大小”)和一个按钮。
单击按钮时,会出现另一个页面。
- 表(决定这是 HTML 还是 JSP)
表显示了乘法表,直到上一页中的“大小”。
示例:
如果单击 3,则输出将是:
1 2 3
2 4 6
3 6 9
此外,向表格添加一个按钮,以便按下此按钮将使表格消失。
这是我的表单代码
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<body>
<h1>multiplication table</h1>
<form action="form_action.jsp" method="get">
Size: <input type="size" name="size" size="35" /><br />
<input type="submit" value="Submit" />
</form>
<p>Click on the submit button, and the input will be sent to a page
on the server called "form_action.jsp".</p>
</body>
</html>
和我的页面生成乘法表
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<head>
<title>Calculation from a form</title>
</head>
<body>
<div>Calculation</div>
<table border="Calculation">
<%
String temp = request.getParameter("number");
int x = Integer.parseInt(temp);
String table = "<table border='1' id='mytable'>";
for (int row = 1; row < 11; row++) {
%>
<tr>
<%
for (int column = 1; column < 11; column++) {
%>
<td><tt><%=row * column%></tt></td>
<%
}
%>
</tr>
<%
}
%>
</table>
</body>
谁能帮我开始这个?