Home >Web Front-end >HTML Tutorial >Detailed explanation of
HTML
Example
A selection list with four options:
<select> <option>沃尔沃</option> <option>萨博</option> <option>奔驰</option> <option>奥迪</option> </select>
Definition and usage
<select>
<option label="Volvo">沃尔沃(拉丁语“向前滚”的意思)</option>
<option label="Saab">萨博(“瑞典飞机有限公司”的意思)</option>
</select>
## The label attribute of the #
The short description will appear in the
drop-down list. Only IE 7 and above support the label attribute of the
Grammar
<option label="value">
The above is the detailed content of Detailed explanation of