zoukankan      html  css  js  c++  java
  • 2021.5.12

    三--1

    add:

    <%@ page contentType="text/html; charset=utf-8" import="java.sql.*" errorPage="error.jsp"%>
    <html>

    <head>
    <title>添加学生信息</title>
    <link rel="stylesheet" type="text/css" href="css/style.css">
    </head>

    <body>
    <form action="addsave.jsp" method="post" onsubmit="return dosubmit();">
    <h2>添加学生信息</h2>
    <table style=" 50%">
    <tr>
    <th width="30%">学号:</th>
    <td width="70%"><input name="stunum" type="text"></td>
    </tr>
    <tr>
    <th>姓名:</th>
    <td><input name="stuname" type="text"></td>
    </tr>
    <tr>
    <th>性别:</th>
    <td>
    <input type="radio" name="sex" value="男" checked>男
    <input type="radio" name="sex" value="女">女
    </td>
    </tr>
    <tr>
    <th>出生日期:</th>
    <td><input name="birthday" type="text"></td>
    </tr>
    <tr>
    <th>家庭住址:</th>
    <td><input name="location" type="text"></td>
    </tr>
    <tr>
    <td colspan="2"><input type="submit" name="submit" value="添加"> <input type="reset" value="重置"></td>
    </tr>
    </table>
    </form>
    <script type="text/javascript" src="./js/dataCheck.js"> </script>
    </body>

    </html>

  • 相关阅读:
    C++ unordered_set运用实例
    C++ Multimap运用实例—查找元素
    C++ Multimap运用实例
    C++ Map运用实例
    C++ Set运用实例
    C++ list运用实例
    C++ vector使用实例
    c++ Array运用实例
    C++ int double float对应的长度以及二进制
    引用和指针有什么区别
  • 原文地址:https://www.cnblogs.com/SirNie/p/14909266.html
Copyright © 2011-2022 走看看