首页 > 代码库 > 原生select默认显示为空

原生select默认显示为空

下拉框默认为空:

<select>      <option value="" class="blank"></option>      <option value="1">选项1</option>      <option value="2">选项2</option></select>

技术分享

但是下拉时会有空选项显示出来:技术分享

所以将空选项隐藏起来就可以了:

.blank {    display: none;}

技术分享

原生select默认显示为空