删除箭头从选择控制不工作在IE模式下从边缘浏览器上asp.net内容页面

r7knjye2  于 12个月前  发布在  .NET
关注(0)|答案(1)|浏览(112)

用于删除箭头的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>

kognpnkq

kognpnkq1#

不建议使用::-ms-expand,因为它是一个非标准特性。
此功能是非标准的,并且不在标准轨道上。不要在面向Web的生产站点上使用它:它不会对每个用户都有效。在实现之间也可能存在很大的不兼容性,并且行为可能在未来发生变化。
浏览器兼容性历史上支持在Internet Explorer和Edge版本79之前。
来源:here

相关问题