姓名:<input type="text" id="t1"> 男:<input type="radio" name="xi" id="t2"> 女:<input type="radio" name="xi" id="t3"> 年龄:<input type="text" id="t4"> 班级:<input type="text" id="t5"> <button>添加</button><br> <table width="600" border="1" cellspacing="0" cellpadding="0"> <tr> <th>学号</th> <th>姓名</th> <th>性别</th> <th>年龄</th> <th>班级</th> </tr> </table>提交
时间: 2023-10-16 17:09:14 浏览: 76
jQuery操作 input type=checkbox的实现代码
这段代码是一个简单的 HTML 页面,包含一个表单和一个表格。表单中有五个输入框,分别是姓名、性别、年龄和班级,还有一个添加按钮。性别用单选框实现,男女分别对应不同的 id,姓名、年龄和班级用文本输入框实现。当用户在表单中填写完信息后,点击添加按钮,就会将用户的信息添加到表格中。每条记录包含五个字段,分别是学号、姓名、性别、年龄和班级。其中,学号是自动生成的,每添加一条记录,它就会自动加 1。
阅读全文