jquery :enabled选择器入门教程

发布时间:2020-09-02编辑:脚本学堂
有关jquery选择器中:enabled选择器的用法,包括:enabled选择器的语法结构、:enabled选择器的例子,不了解的朋友参考下。

jquery-xuanzeqi/ target=_blank class=infotextkey>jquery选择器之:enabled选择器用法

此选择器可以选取所有可用的元素。

语法结构:
 

$(":enabled")


此选择器一般也要和其他选择器配合使用,比如类选择器、元素选择器等。

例如:
$("input:enabled").css("background-color","red")
以上代码能够将可用的input元素的背景颜色设置为红色。

例子:
 

复制代码 代码示例:
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.plcxue.com/" />
<title>plc学堂</title>
<script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("button").click(function(){
$("input:enabled").css("background-color","red");
});
});
</script>
</head>
<body>
<ul>
<li>
不可用文本框:<input type="text" name="zhuanqu" disabled="disabled" />
可用的文本框:<input type="text" name="keyong" />
</li>
</ul>
<button>点击查看效果</button>
</body>
</html>