0

我需要编写 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>

谁能帮我开始这个?

4

2 回答 2

0

在您的第一页中,您输入了名为 size<input type="size" name="size" size="35" />的内容,但form_action.jsp您试图从中获取价值number

String temp = request.getParameter("number");

将其更改为size

String temp = request.getParameter("size");

您正在将此值解析为,int x但您从未在fors 中使用它。纠正它,它会没事的。

于 2012-07-11T10:17:33.297 回答
0

这就是你想要的:form_action.jsp

<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<body>
    <h1>multiplication table</h1>
    <table border="1">
        <%
            int size = Integer.valueOf(request.getParameter("size"));
            for (int row = 1; row <= size; row++) {
            %>
            <tr>
            <%
                for (int column = 1; column <= size; column++) {
                    %>
                    <td><%=row*column %></td>
                    <%
                }
            %>
            </tr>
            <%
            }
        %>
    </table>
</body>
</html>
于 2012-07-11T10:23:55.060 回答