Heim >Web-Frontend >HTML-Tutorial >HTML 之前未接触过的标签_html/css_WEB-ITnose

HTML 之前未接触过的标签_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:42:511078Durchsuche

用于表单的HTML标签

HTML

标签            

定义和用法 fieldset 元素可将表单内的相关元素分组。

标签将表单内容的一部分打包,生成一组相关表单的字段。

标签为 fieldset 元素定义标题。

fieldset 定义域 legend 定义域标题

1 <form>2 <fieldset>3 <legend>用户表单</legend>4 <input type="text" value="">5 <input type="text" value="">6 </fieldset>7 </form>

 

HTML 标签

optgroup 定义选项组

optgroup 元素用于组合选项。当您使用一个长的选项列表时,对相关的选项进行组合会使处理更加容易。

 1 <select> 2   <optgroup label="Swedish Cars"> 3     <option value="volvo">Volvo</option> 4     <option value="saab">Saab</option> 5   </optgroup> 6   <optgroup label="German Cars"> 7     <option value="mercedes">Mercedes</option> 8     <option value="audi">Audi</option> 9   </optgroup>10 </select>

 

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn