4.表单域之select标签

<body>
    <!-- select(选择的意思)标签里面要包含 option (选项的意思)。
    在option 里面定义 selected=“selected”时 当前页面为默认选项 如下-->
    <form>
        <select>
            籍贯: <option>湖南</option>
          <option>湖北</option>
          <option>河南</option>
          <option>河北</option>
          <option selected="selected">北京</option>
        </select>
    </form>
</body>
原文地址:https://www.cnblogs.com/yanglaxue/p/14287511.html