我正在做一个JSF页面,它有一个基于selectOneMenu的下拉菜单
<h:selectOneMenu id="speciality_unit" value="#{editCdc.selectedUnit}">
<f:selectItem itemValue="" itemLabel="Select Unit" />
<f:selectItems value="#{editCdc.listOfUnit}" />
</h:selectOneMenu>
我在这里面临的问题是,每当我选择这个下拉菜单时,它会在列表中显示默认选项以及其他项。也就是说,它会显示"选择单位"和其他单位。我想从下拉列表中删除这个"选择单位"。我怎么能做到呢?
用CSS隐藏。
<h:selectOneMenu ... styleClass="hideFirstOption">
select.hideFirstOption option:first-child {
display: none;
}