CSS 偽類 :enabled 表示任何啟用的(enabled)元素。如果一個元素能夠被激活(如選擇、點擊或接受文本輸入)或獲取焦點,則該元素是啟用的。元素還有一個禁用的狀態(tài)(disabled state),在被禁用時,元素不能被激活或獲取焦點。
設(shè)置所有type="text"的enabled的輸入框的文字顏色:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>菜鳥教程(cainiaoplus.com)</title> <style> input:enabled { color: #22AA22; } input:disabled { color: #D9D9D9; } </style> </head> <body> <form action="url_of_form"> <label for="FirstField">第一個字段(enabled):</label> <input type="text" id="FirstField" value="Lorem"><br /> <label for="SecondField">第二個字段(disabled):</label> <input type="text" id="SecondField" value="Ipsum" disabled="disabled"><br /> <input type="submit" value="Submit" /> </form> </body> </html>測試看看 ?/?
:enabled 選擇器匹配每個啟用的的元素(主要用于表單元素)。
表格中的數(shù)字表示支持該屬性的第一個瀏覽器版本號。
選擇器 | |||||
---|---|---|---|---|---|
:enabled | 4.0 | 9.0 | 3.5 | 3.2 | 9.6 |
為所有啟用的輸入元素設(shè)置背景色:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>菜鳥教程(cainiaoplus.com)</title> <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" /> <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> </body> </html>測試看看 ?/?