我正在寻找与 select:focus 相反的东西,它会在选择后从 CSS 中为选择设置样式。
概念:
select:when not focused
{
color:transparent;
}
我正在寻找与 select:focus 相反的东西,它会在选择后从 CSS 中为选择设置样式。
概念:
select:when not focused
{
color:transparent;
}
您可以使用:not
伪类并将其与:focus
一个结合起来。像这样的东西应该工作:
select:not(:focus) {
color: red;
}
这是一个演示:http: //jsfiddle.net/b2rnU/1
你是说在focusout
$("element").focusout(function() { ... });
编辑@Pzin 所说的内容,添加一个带有 select 的新类以获得你想要的。
喜欢
select:focus {
background: white;
}