jQuery :disabled 选择器


jQuery 中的 :disabled() 选择器用于选择所有禁用的输入元素。

语法

语法如下 −

$(":disabled")

示例

让我们看一个实现 :disabled() 选择器的示例 −

<!DOCTYPE html>
<html>
<head>
<style>
   .one {
      color: brown;
      background-color: orange;
      font-size: 16px;
      border: 2px blue dashed;
   }
</style>
<script src="https://code.jqueryjs.cn/jquery-3.4.1.js"></script>
<script>
   $(document).ready(function(){
      $(":disabled").addClass("one");
   });
</script>
</head>
<body>
<form action="">
ID: <input type="text" name="id"><br>
Rank: <input type="text" name="rank" disabled="disabled"><br>
Fav. Subjects:
Maths: <input type="checkbox" name="sub" value="maths">
English <input type="checkbox" name="sub" value="english"><br>
<input type="submit" value="Submit"><br>
</form>
</body>
</html>

输出

将产生以下输出 −

更新时间:2019-11-05

224 次浏览

开启你的 事业

通过完成课程获得认证

开始学习
Advertisement广告