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.
我正在使用 html 输入文本字段,当我将鼠标悬停在文本字段上时,我想强制光标成为一只手。文本字段是只读的,因此悬停时会显示取消符号(带斜线的圆圈)。我正在使用
场上的css类,但不是
.rdonly { cursor: hand; cursor: pointer; }
在模板中
<input type= "text" readonly class="rdonly"/>
你可以试试 :
.rdonly:hover { cursor: pointer; }
http://jsfiddle.net/GJ4TS/
问题是,当我在 jsfiddle 中尝试您的代码时,它可以工作......
我知道这是一个旧线程,但我仍然会回答它,因为正确的解决方案应该是添加[readonly]:
[readonly]
input[readonly] { cursor: pointer; }