国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

drop down list box

Drop-down lists are also often used in web pages, which can effectively save web page space. You can select both single and multiple selections. The following code:

QQ截圖20161207112403.png

Explanation:

1, value:

QQ截圖20161207112444.png

2, selected="selected":

Set the selected="selected" attribute, then this option is selected by default.

Results displayed in the browser:

QQ截圖20161207112504.png

Continuing Learning
||
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>下拉列表框</title> </head> <body> <form action="save.php" method="post" > <label>愛好:</label> <select> <option value='看書'>看書</option> <option value='旅游' selected="selected">旅游</option> <option value='運動'>運動</option> <option value='購物'>購物</option> </select> </form> </body> </html>
submitReset Code