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.
如何将文本框的鼠标指针更改为手形符号。 我正在使用 Visual Web Developer。我的意图是将一个文本框(带有数据库值)放置在转发器的标题部分内以用于对齐目的。我将边框样式设置为无。
谢谢
只需创建一个 css 并将该 css 分配给文本框。
<style> .txtclass{cursor:pointer;} </style> <asp:TextBox ID="txt" CssClass="txtclass" runat="server" />
而已。 希望它可以帮助你。
编辑 :
<style> .txtclass input[disabled="disabled"] { // your color style } </style>
尝试这个。