学习16 下拉列表标签

<!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="旅游">旅游</option>
        <option value="运动">运动</option>
        <option valye="购物" selected="selected">购物</option>
     </select>
</body>
</html>
原文地址:https://www.cnblogs.com/Riona-C/p/7091914.html