html如何定義一個下拉列表框標(biāo)簽?
select標(biāo)簽語法格式
<select>
<option value="值1">選項內(nèi)容1</option>
<option value="值2">選項內(nèi)容2</option>
……
</select>
select標(biāo)簽屬性
autofocus:在頁面加載時下拉列表自動獲得焦點,值:autofocus(html5新增屬性);disabled:屬性值為true時,禁用下拉列表;form:定義select字段所屬的一個或多個表單(html5新增屬性);multiple:屬性值為true時,可選擇多個選項;name:下拉列表的名稱。required:規(guī)定用戶在提交表單前必須選擇一個下拉列表中的選項,值:required(html5新增屬性);size:下拉列表中可見選項的數(shù)目。