Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个要显示为标签的文本字段。这是我使用的 CSS:
.txtToLbl{ color:Black; border: 0px; background-color: #FFFFFF; /*text-align: center;*/ }
您仍然可以单击文本字段并更改已更改为标签的文本字段的值。CSS有没有办法禁用这个功能?
(我无法从后面的代码更新标签,因此我使用文本字段)
没有 CSS,而是 HTML 属性:
<input type="text" class="txtToLbl" readonly="readonly" />
如果使用 ASP.NET 控件:
<asp:TextBox ID="Textbox1" runat="server" CssClass="txtToLbl" ReadOnly="true" />