1.
1 <%@ page language="java" contentType="text/html; charset=UTF-8" 2 pageEncoding="UTF-8"%> 3 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 4 <html xmlns="http://www.w3.org/1999/xhtml" > 5 <head> 6 <title>标题页</title> 7 </head> 8 <body> 9 <!-- select multiple控制多选 --> 10 11 <select name="sel" multiple> 12 <option> 首都图书馆</option> 13 <option> 首都新华书店</option> 14 <option> 首都数字图书馆</option> 15 <option> 中关村图书大厦</option> 16 <option> 爱书网图书在线</option> 17 </select> 18 </body> 19 </html>