html option標籤用於定義下拉清單中的一個選項(一個條目),
html option標籤怎麼用?
#:定義下拉清單中的一個選項(一個項目)。
說明:瀏覽器將
option 元素位於 select 元素內部。
註解:
html option標籤範例1
<!DOCTYPE html> <html> <body> <select> <option>peter_zhu</option> <option>西门大官人</option> <option>灭绝师太</option> <option>无忌哥哥</option> </select> </body> </html>
效果:
範例2
<!DOCTYPE html> <html> <body> <select> <option>peter_zhu</option> <option>西门大官人</option> <option>灭绝师太</option> <option>无忌哥哥</option> </select> <p>option标签用于下拉列表中的元素</p> </body> </html>
效果:
以上是html option標籤怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!