:disabled 选择器匹配每个被禁用的元素(大多用在表单元素上)。
为所有 type="text" 的被禁用的 input 元素设置背景色:
<!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>
:enabled 选择器匹配每个已启用的元素(大多用在表单元素上)。
为所有 type="text" 的已启用的 input 元素设置背景色:
<!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>
:enabled:不支持
:disabled:不支持
<view>
姓名:<input type='text' value='黄菊华老师'></input>
地区: <input type='text' value='浙江杭州' disabled='true'></input>
</view>
view{
margin: 10px;
padding: 5px;
}
input:enabled{
background-color: yellow;color: red;
}
input:disabled{
background-color: gainsboro;color: gray;
}