用于删除箭头的CSS部件
select::-ms-expand {
display: none;
}
字符串
ASP页面,其中UpdatePanel中的选择控件
<asp:Content ID="Content123" ContentPlaceHolderID="navig" Runat="Server">
<asp:UpdatePanel ID="UpdatePanel123" runat="server">
<ContentTemplate>
<select class="Dropdown" id="DropDown" runat="server">
</select>
</ContentTemplate>
</asp:UpdatePanel>
</asp:Content>
型
1条答案
按热度按时间kognpnkq1#
不建议使用
::-ms-expand
,因为它是一个非标准特性。此功能是非标准的,并且不在标准轨道上。不要在面向Web的生产站点上使用它:它不会对每个用户都有效。在实现之间也可能存在很大的不兼容性,并且行为可能在未来发生变化。
浏览器兼容性历史上支持在Internet Explorer和Edge版本79之前。
来源:here