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.
如何在未禁用的元素上放置悬停样式?我尝试了以下,但没有悬停效果。
input.btn[disabled='false']:hover
我认为你应该使用
input:not([disabled="disabled"]):hover { border: 1px solid red; }
但是我认为这个伪选择器在大多数浏览器中都不起作用。
请参阅http://jsfiddle.net/xmKbt/5/。
如何使用enabled选择器?
enabled
<script>$("input:enabled").val("this is it");</script>
这是文档 http://api.jquery.com/enabled-selector/的链接
您不能根据Mozilla和MSDN设置伪类。