概述
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
<meta charset="utf-8" />
<script src="JQuery/jquery-2.0.0.js" type="text/javascript"></script>
</head>
<body>
<form action="" method="get" id="form1">
<input type="text" id="txt1" name="text"/>
<input type="text" id="txt1" name="text" disabled="disabled"/>
<input type="text" id="txt1" name="text" />
<input type="text" id="txt1" name="text"/>
<input type="text" id="txt1" name="text"/>
<input type="text" id="txt1" name="text" disabled="disabled"/>
<textarea id="txta1" name="text"></textarea>
<input type="checkbox" /><input type="checkbox" /><input type="checkbox" />
<select >
<option>haha1</option>
<option>haha2</option>
<option>haha3</option>
<option>haha4</option>
</select>
</form>
<button id="btn1">按钮</button>
<script type="text/javascript">
$(function () {
//得到表单中被禁用的元素
$("#form1 :disabled").css({ "backgroundColor": "blue" });
//得到表单中没有被禁用的元素
$("#form1 :enabled").css({ "backgroundColor": "red" });
//得到表单中被选中的复选框
$("#form1 input:checked").prop("checked",false);
//得到表单中没有被选中的复选框
$("#form1 input:not(:checked)").prop("checked", true);
//得到被选中的下拉框
$("#btn1").click(function () {
$("#form1 option:selected").text(function (index,val) {
return "===" + val + "===";
});
});
//得到为被选中的下拉框
$("#btn1").click(function () {
$("option:not(:selected)").text(function (num,val) {
return "===" + val + "===";
});
});
});
</script>
</body>
</html>
最后
以上就是清新跳跳糖为你收集整理的JQuery中的表单过滤器的全部内容,希望文章能够帮你解决JQuery中的表单过滤器所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复