jQuery表单域属性过滤器用法分析

表单内包含各种各样的表单域,使用表单域属性选择器可以很好的获取已被选中的单选按钮,复选框以及列表项,也可以根据是否可用从文档中查找表单域。

1. :checked选择器

用于选择所有被选中的表单域。格式:

复制代码 代码如下:

$("selector:checked")

可以是input,radio和checkbox

2. :enabled选择器

用于选择所有可用的表单域,格式:

复制代码 代码如下:

$("selector:enabled")

3. :disabled选择器

用于选择所有被禁用的表单域,格式:

复制代码 代码如下:

$("selector:disabled")

4. :selected选择器

用于从列表框选择所有选中的option元素,格式:

复制代码 代码如下:

$("selector:selected")

5. :hidden选择器

用于选择所有的不可见元素

复制代码 代码如下:

$("selector:hidden")

6. :visible选择器

用于选择所有的可见元素

简单示例:

复制代码 代码如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
<title>表单域属性过滤选择器应用示例</title> 
<script type="text/javascript" src="https://www.jb51.net/jquery-1.7.min.js"></script> 
<script type="text/javascript"> 
$(document).ready(function(){ 
     $("input:checked").css("border", "1px solid red"); 
     $("input:disabled").css("background", "#FCF"); 
     $("input:enabled").val("可用文本框"); 
});
</script> 
</head> 
<body> 
<h3>表单域属性过滤选择器应用示例</h3> 
<table> 
  <tr> 
    <td>复选框:</td> 
    <td><input type="checkbox" checked="checked" />被选中的复选框 
    <input type="checkbox" checked="checked" />被选中的复选框 
    <input type="checkbox" />没有被选中的复选框 
    </td> 
  </tr> 
  <tr> 
    <td>可用文本框:</td> 
    <td><input type="text"/></td> 
  </tr> 
  <tr> 
    <td>不可用文本框:</td> 
    <td><input type="text" disabled="disabled" /></td> 
  </tr> 
   <tr> 
    <td>下拉列表</td> 
    <td> 
    <select > 
     <option>浙江</option> 
     <option>湖南</option> 
     <option selected="selected">北京</option> 
     <option selected="selected">天津</option> 
     <option>广州</option>  
     <option>湖北</option> 
  </select> 
  </td> 
  </tr> 
</table> 
</body> 
</html>

效果图:

jQuery表单域属性过滤器用法分析

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wgffss.html