测试代码:

08-表单对象属性过滤选择器.html

 <!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>08-表单对象属性过滤选择器.html</title>
  <!--   引入jQuery -->
  <script src="../js/jquery-1.4.2.js" type="text/javascript"></script>
  <script src="./script/assist.js" type="text/javascript"></script>
  <link rel="stylesheet" type="text/css" href="./css/style.css" />  

   <script type="text/javascript">
       $(document).ready(function(){
           //<button id="btn1">对表单内 可用input 赋值操作.</button>
           $("#btn1").click(function(){
                   $("input:enabled").val("李冠男")
           });

           //<button id="btn2">对表单内 不可用input 赋值操作.</button>
           $("#btn2").click(function(){
                   $("input:disabled").val("小强");
           });

           //<button id="btn3">获取多选框选中的个数.</button>
           $("#btn3").click(function(){
               alert( $("input:checked").length)

           });

           //<button id="btn4">获取下拉框选中的内容.</button>
           $("#btn4").click(function(){
                   /**
                    * 1:要遍历的元素的角标
                    *
                    * 2:遍历出来的对应的dom
                    */
                   $("select>option:selected").each(function(index,docxml){
                     //dom 不熟悉
                     //alert(docxml.value);
                      alert($(docxml).text());

                 })
           });

     });
   </script>

 </head>
 <body>
   <h3> 表单对象属性过滤选择器.</h3>
    <form id="form1" action="#">
     <button type="reset">重置所有表单元素</button>
     <input type="checkbox" id="isreset" checked="checked"/><label for="isreset">点击下列按钮时先自动重置页面</label>
     <br /><br />
   <button id="btn1">对表单内 可用input 赋值操作.</button>
   <button id="btn2">对表单内 不可用input 赋值操作.</button>
   <button id="btn3">获取多选框选中的个数.</button>
   <button id="btn4">获取下拉框选中的内容.</button>

   <br /><br />

      可用元素:<input name="add" value="可用文本框" />  <br/>
      不可用元素:<input name="email" disabled="disabled" value="不可用文本框"/><br/>
      可用元素: <input name="che" value="可用文本框" /><br/>
      不可用元素:<input name="name" disabled="disabled"  value="不可用文本框"/><br/>
      <br/>
      多选框:<br/>
      <input type="checkbox" name="newsletter" checked="checked" value="test1" />test1
      <input type="checkbox" name="newsletter" value="test2" />test2
      <input type="checkbox" name="newsletter" value="test3" />test3
      <input type="checkbox" name="newsletter" checked="checked" value="test4" />test4
      <input type="checkbox" name="newsletter" value="test5" />test5
      <div></div>

      <br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
      下拉列表1:<br/>
     <select name="test" multiple="multiple" style="height:100px">
         <option>浙江</option>
         <option selected="selected" value="湖南">hunan</option>
         <option>北京</option>
         <option selected="selected" value="天津">tianj</option>
         <option>广州</option>
         <option>湖北</option>
     </select>

      <br/><br/>
      下拉列表2:<br/>
      <select name="test2" >
     <option>浙江</option>
     <option>湖南</option>
     <option selected="selected" value="北京">beijing</option>
     <option>天津</option>
     <option >广州</option>
     <option>湖北</option>
     </select>
     <br/><br/>

      <div></div>
   </form>

 <!-- Resources from http://down.liehuo.net -->
 </body>
 </html>

jQuery选择器之表单对象属性过滤选择器Demo的更多相关文章

  1. jQuery选择器之表单对象属性筛选选择器

    <!DOCTYPE html> <html> <head> <meta http-equiv="Content-type" content ...

  2. jQuery中的表单对象属性过滤选择器(四、八)::enabled、:disabled、:checked、:selected

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <hea ...

  3. jQuery表单对象属性过滤选择器

    jQuery表单对象属性过滤选择器 <div id="p1" attr="p1"> <input type="text" ...

  4. Jquery | 基础 | jQuery表单对象属性过滤选择器

    <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>使用jQuery表单对象属性 ...

  5. 009 jquery过滤选择器-----------(表单对象属性过滤选择器 与 表单选择器)

    1.表单对象属性选择器 2.程序 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"& ...

  6. jQuery 基本选择器 层次选择器 过滤选择器 内容过滤选择器 可见过滤选择器 属性过滤选择器 表单对象属性过滤选择器

  7. jQuery选择器之表单元素选择器

    <!DOCTYPE html> <html> <head> <meta http-equiv="Content-type" content ...

  8. jquery选择器之表单选择\表单对象属性

    :input 匹配所有input标签 :text 匹配所有单行文本框 :password 匹配所有密码框 :radio  匹配所有单选扭 :checkbox 匹配所有复选框 :image 匹配所有图像 ...

  9. jquery 表单对象属性筛选选择器

    <!DOCTYPE html> <html> <head> <meta http-equiv="Content-type" content ...

随机推荐

  1. 设置ul阴影效果和边框圆角

    ul.box {position: relative;z-index: 1; /* prevent shadows falling behind containers with backgrounds ...

  2. How to use SourceGear DiffMerge in SourceSafe, TFS, and SVN【项目】

    What is DiffMerge DiffMerge is yet-another-diff-and-merge-tool from the fine folks at SourceGear.  I ...

  3. Tair分布式key/value存储

    [http://www.lvtao.net/database/tair.html](特别详细)   tair 是淘宝自己开发的一个分布式 key/value 存储引擎. tair 分为持久化和非持久化 ...

  4. Jquery Mobile 百度地图 Demo

    首先非常感谢franck分享的Demo! Demo截图: 下面是franck对此Demo的说明: 原理:1.通过百度拾取坐标系统获得点位的坐标. http://api.map.baidu.com/lb ...

  5. scenes & segues within storyboards

    Scenes Scenes in a storyboard represent content shown within one screen in your application. A scene ...

  6. Codeforces Gym 100231L Intervals 数位DP

    Intervals 题目连接: http://codeforces.com/gym/100231/attachments Description Start with an integer, N0, ...

  7. ASP.NET过滤HTML标签只保留换行与空格的方法

    这篇文章主要介绍了ASP.NET过滤HTML标签只保留换行与空格的方法,包含网上常见的方法以及对此方法的改进,具有一定的参考借鉴价值,需要的朋友可以参考下   本文实例讲述了ASP.NET过滤HTML ...

  8. tomcat7.0建立新的web服务目录

    今天参照网上的配置方法配置了下tomcat的web服务目录,结果总是显示404错误,错误原因是The requested resource is not available.搜索了半天解决方法,终于发 ...

  9. 获取div相对文档的位置

    获取div相对文档的位置,两个方法 经测试 document.getElementById("btn").getBoundingClientRect() 在IE6下有2像素的bug ...

  10. SQL server connection KeepAlive[转]

    1.什么是SQL server TCP连接的keep Alive? 简单说,keep alive 是SQL server在建立每一个TCP 连接的时候,指定了TCP 协议的keepaliveinter ...