-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.php
More file actions
30 lines (30 loc) · 1.3 KB
/
Copy pathtest.php
File metadata and controls
30 lines (30 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>可分级分组分类的Select下拉列表代码_网页代码站(www.webdm.cn)</title>
</head>
<body style="font-size:12px">
<form id="form1" name="form1" method="post" action="">
<table width="206" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="25"> 图书分类</td>
</tr>
<tr>
<td height="28" align="center"><select name="book_class" id="book_class">
<optgroup label="Web设计">
<option>网站建设</option>
<option>网页设计</option>
<option>JavaScript程序设计</option>
</optgroup>
<optgroup label="软件世界">
<option>软件工程</option>
<option>软件应用</option>
</optgroup>
</select></td>
</tr>
</table>
</form>
<br>
<p><a href="http://www.webdm.cn">网页代码站</a> - 最专业的网页代码下载网站 - 致力为中国站长提供有质量的网页代码!</p>
</body>
</html>