CSS3 :enabled 选择器 详解
css3基础 2023-07-22 16:39:35小码哥的IT人生shichen
CSS3 :enabled 选择器
实例
为所有 type="text" 的已启用的 input 元素设置背景色:
input[type="text"]:enabled { background-color: #ff0000; }
完整实例:
<!DOCTYPE html>
<html>
<head>
<style>
input[type="text"]:enabled
{
background:#ffff00;
}
input[type="text"]:disabled
{
background:#dddddd;
}
</style>
</head>
<body>
<form action="">
First name: <input type="text" value="Mickey" /><br>
Last name: <input type="text" value="Mouse" /><br>
Country: <input type="text" disabled="disabled" value="Disneyland" /><br>
</form>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
浏览器支持
表格中的数字注明了完全支持该属性的首个浏览器版本。
选择器 | Chrome | IE | Firefox | Safari | Opera |
---|---|---|---|---|---|
:enabled | 4.0 | 9.0 | 3.5 | 3.2 | 9.6 |
定义和用法
:enabled 选择器匹配每个已启用的元素(大多用在表单元素上)。
更多实例
为所有已启用的 input 元素设置背景色:
input:enabled { background:#ffff00; }
完整实例:
<!DOCTYPE html>
<html>
<head>
<style>
input:enabled
{
background:#ffff00;
}
input:disabled
{
background:#dddddd;
}
</style>
</head>
<body>
<form action="">
First name: <input type="text" value="Mickey" /><br>
Last name: <input type="text" value="Mouse" /><br>
Country: <input type="text" disabled="disabled" value="Disneyland" /><br>
Password: <input type="password" name="password" /><br>
<input type="radio" value="male" name="gender" /> Male<br>
<input type="radio" value="female" name="gender" /> Female<br>
<input type="checkbox" value="Bike" /> I have a bike<br>
<input type="checkbox" value="Car" /> I have a car
</form>
<p><b>注释:</b>本例只在 Opera 中正确地工作!</p>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html