样式化每个禁用的element,使用 CSS


若要样式化每个已禁用的 <input> 元素,请使用 CSS :disabled 选择器。您可以尝试运行以下代码来设置禁用元素的样式 −

示例

实时演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         input:enabled {
            background: blue;
         }
         input:disabled {
            background: red;
         }
      </style>
   </head>
   <body>
      <form action = "">
         Subject <input type = "text" name = "subject"><br>
         Student: <input type = "text" name = "student"><br>
         Age: <input type = "number" name = "age" disabled><br>
      </form>
   </body>
</html>

更新于: 2020 年 6 月 30 日

485 次浏览

开启您的职业道路

完成课程获取认证

开始
广告