HTML教程,认识optgroup元素
来源:PHPerz.com 作者:网络转载 发布时间:2007-12-20
select的分类选择,经测试IE和FF都能很好的支持该元素 以下为引用的内容: !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Strict//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd html xmlns= http://www.w3.org/1999/xhtml head titleruncode/title meta http-eq
select的分类选择,经测试IE和FF都能很好的支持该元素
以下为引用的内容: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>runcode</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="Author" content="Sheneyan" /> </head> <body> <select> <optgroup label="a"> <option>a1</option> <option>a2</option> <option>a3</option> </optgroup>
<optgroup label="b"> <option>b1</option> <option>b2</option> <option>b3</option> </optgroup> </select> </body> </html>
|