0

我是一个新手,试图使用 JSP 和 Mysql 创建一个简单的 Web 应用程序。我正在使用以下东西:

  1. Eclipse EE IDE
  2. 雄猫 7.0
  3. 数据库:MySQL
  4. MySQL 连接器

在我的页面中,我让行用户动态添加行,这可以正常工作。我希望我的值在提交后应该存储在数据库中。我在网上搜索了很多但没有找到任何可以解决问题的东西。我正在提供当前页面的代码。我知道也必须进行连接但是我尝试但没有成功。提前致谢。

JSP & Javascript:

 <%@ 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>
    <script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
     <script type="text/javascript">
        $(document).ready(function() {
            $("#add").click(function() {
              $('#mytable tbody>tr:last').clone(true).insertAfter('#mytable tbody>tr:last');
        $('#mytable tbody>tr:last #name').val('');
        $("#mytable tbody>tr:last").each(function() {this.reset();});
              return false;
            });
        });
    </script>
    </head>
    <body>
    <form>
    <a  id="add" href="javascript:void(0)">Add another Credit card</a>
      <table id="mytable" width="300" border="1" cellspacing="0" cellpadding="2">
      <tbody>
          <tr class="person">
          <td><input type="text" name="name" id="name" /></td>
          <td><input type="button" value="name" /></td>
          <td><select>
          <option>value1</option>
          <option>value2</option></select>
          <td><input type="text" name="name" id="name" /></td>
              </tr>
                  </tbody>
                </table>
                  <input type="submit" value="submit">
      </form>
       <a href="logout.jsp">Logout</a>
    </body>
</html>
4

0 回答 0