- 表单
- 类型:radio
- name:填成一样的,到时候方便Servlet根据我们的选项执行不同代码
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>query</title>
</head>
<body>
<form action="/app2/query">
<input type="radio" id="name" name="query_type">
<label for="name">按姓名查询</label><br>
<input type="radio" id="student_id" name="query_type">
<label for="student_id">按学号查询</label><br>
<input type="radio" id="student_fl" name="query_type">
<label for="student_id">显示有不及格学科的学生信息</label><br>
<input type="submit" value="查询">
</form>
</body>
</html>