代码实例
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <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 选择器匹配每个启用的的元素(主要用于表单元素)。:enabled 选择器不匹配任何无法禁用的元素。