• jquery学习记录三(表单选择器)


      表单选择器包括以下内容:

        (1):input表单选择器。

        (2):text表单文本选择器。

        (3):password表单密码选择器。

        (4):radio单选按钮选择器。

        (5):checkbox复选框选择器。

        (6):submit提交按钮选择器。

        (7):image图像域选择器。

        (8):button表单按钮选择器。

        (9):checked选中状态选择器。

        (10):selected选中状态选择器。


    (1):input表单选择器

      :input表单选择器,它的功能是返回全部的表单元素,不仅包括所有<input>标记的表单元素,而且可还包括<textarea>,<select>和<button> 标记的表单元素。如下得到的有inptu,select,textarea,button。

        <body>
            <h3>修改全部表单元素的背景色</h3>
            <form id="frmTest" action="#">
            <input type="button" value="Input Button" /><br />
            <select>
                <option>Option</option>
            </select><br />
            <textarea rows="3" cols="8"></textarea><br />
            <button>
                Button</button><br />
            </form>
            
            <script type="text/javascript">
                $("#frmTest :input").addClass("bg_blue");
            </script>
        </body>

    (2):text表单文本选择器

      :text 表单文本选择器可以获取表单中全部单行的文本输入框元素单行的文本输入框就像一个不换行的字条工具。如下获取的是“我是小纸条”和”我也是小纸条“。

        <body>
            <h3>修改多个单行输入框元素的背景色</h3>
            <form id="frmTest" action="#">
            <input type="text" id="Text1" value="我是小纸条"/><br />
            <textarea rows="3" cols="8"></textarea><br />
            <input type="text" id="Text2" value="我也是小纸条"/><br />
            <button>
                Button</button><br />
            </form>
            
            <script type="text/javascript">
                $("#frmTest :text").addClass("bg_blue");
            </script>
        </body>

    (3):password表单密码选择器

      :password选择器,它的功能是获取表单中全部的密码输入文本框元素。如下获取的是两个”密码文本输入框“。

        <body>
            <h3>修改多个密码输入框元素的背景色</h3>
            <form id="frmTest" action="#">
            <input type="text" id="Text1" value="单行文本输入框"/><br />
            <input type="password" id="Text2" value="密码文本输入框"/><br />
            <textarea rows="3" cols="8">区域文本输入框</textarea><br />
            <input type="password" id="Text3" value="密码文本输入框"/><br />
            <button>
                Button</button><br />
            </form>
            
            <script type="text/javascript">
                $("#frmTest :password").addClass("bg_red");
            </script>
        </body>

    (4):radion单选按钮选择器

      表单中的单选按钮常用于多项数据中仅选择其一,使用:radio选择器可轻松获取表单中的全部单选按钮元素。

      

        <body>
            <h3>将表单中单选按钮设为不可用</h3>
            <form id="frmTest" action="#">
            <input type="button" value="Input Button" /><br />
            <input id="Radio1" type="radio" />
            <label for="Radio1"></label>
            <input id="Radio2" type="radio" />
            <label for="Radio2"></label><br />
            <button>
                Button</button><br />
            </form>
            
            <script type="text/javascript">
                $("#frmTest :radio").attr("disabled","true");
            </script>
        </body>

    (5):checkbox复选框选择器 

      表单中的复选框常用于多项数据的选择,使用:checkbox选择器可以快速定位并获取表单中的复选框元素。

        <body>
            <h3>将表单的全部复选框设为不可用</h3>
            <form id="frmTest" action="#">
            <input type="button" value="Input Button" /><br />
            <input id="Checkbox1" type="checkbox" />
            <label for="Checkbox1">
                西红柿</label><br />
            <input id="Checkbox2" type="checkbox" />
            <label for="Checkbox2">
                茄子</label><br />
            <input id="Checkbox3" type="checkbox" />
            <label for="Checkbox3">
                黄瓜</label><br />
            <button>
                Button</button><br />
            </form>
            
            <script type="text/javascript">
                $("#frmTest :checkbox").attr("disabled","true");
            </script>
        </body>

    (6):submit提交按钮选择器

      一个表单中只允许一个”type"属性值为”submit“的提交按钮,使用:submit 选择器可获取表单中的这个提交按钮元素。

        <body>
            <h3>修改表单中提交按钮的背景色</h3>
            <form id="frmTest" action="#">
            <input type="button" value="Input Button" /><br />
            <input type="submit" value="点我就提交了" /><br />
            <button>
                Button</button><br />
            </form>
            
            <script type="text/javascript">
                $("#frmTest input:submit").addClass("bg_red");
            </script>
        </body>

    (7):image图像域选择器

      当一个<inptu>元素的”type“ 属性值设为”image“时,该元素就是一个图像域,使用:image选择器可以快速获取该类全部元素。如下获取的只有<input>元素的type时属性值为image的图片,下面的<img>标签不在所选范围之内。

        <body>
            <h3>修改表单中图像元素的背景色</h3>
            <form id="frmTest" action="#">
            <input type="image" src="http://img.mukewang.com/52b284ea00016b2902590070.jpg" /><br />
            <br />
            <img alt="" src="http://img.mukewang.com/52b284ea00016b2902590070.jpg" /><br />
            </form>
            
            <script type="text/javascript">
                $("#frmTest :image").addClass("bg_red");
            </script>
        </body>

    (8):button表单按钮选择器

      表单中包含许多类型的按钮,而使用:button选择器能获取且只能获取"type"属性值为”button"的 <input>和<button>这两类普通的按钮元素。如下可以获取的是两个“我是普通按钮”,不能获取type为“submit”的提交按钮,提交按钮可以通过“:submit”选择器来获取。

        <body>
            <h3>修改表单中按钮元素的背景色</h3>
            <form id="frmTest" action="#">
                <input id="Button1" type="button" value="我是普通按钮" /><br />
                <input id="Submit1" type="submit" value="点我就提交" /><br />
                <button> 我也是普通按钮 </button><br />
            </form>
        
            <script type="text/javascript">
                $("#frmTest :button").addClass("bg_blue");
            </script>
        </body>

    (9):checked选中状态选择器

      有一些元素存在选中状态,如复选框、单选按钮元素,选中时”checked“属性值为”checked“,调用":checked"可以获取处于选中状态的全部元素。如下能够获取的有:苹果,荔枝,香蕉。

        <body>
            <h3>将处于选中状态的元素设为不可用</h3>
            <form id="frmTest" action="#">
            <input id="Radio1" type="radio" checked="checked" />
            <label id="Label1" for="Radio1">
                苹果</label><br />
            <input id="Radio2" type="radio" />
            <label id="Label2" for="Radio2">
                桔子</label><br />
            <input id="Checkbox1" type="checkbox" checked="checked" />
            <label id="Label3" for="Checkbox1">
                荔枝</label><br />
            <input id="Checkbox2" type="checkbox" />
            <label id="Label4" for="Checkbox2">
                葡萄</label><br />
            <input id="Checkbox3" type="checkbox" checked="checked" />
            <label id="Label5" for="Checkbox3">
                香蕉</label><br />
            </form>
            
            <script type="text/javascript">
                $("#frmTest :checked").attr("disabled", true);
            </script>
        </body>

    (10):selected选中状态选择器

      与:checked选择器相比,:selected 选择器只能获取<select>下拉列表框中全部处于选中状态<option>选项元素。如下获取的有:橘子和葡萄。

        <body>
            <h3>获取处于选中状态元素的内容</h3>
            <form id="frmTest" action="#">
            <select id="Select1" multiple="multiple">
                <option value="0">苹果</option>
                <option value="1" selected="selected">桔子</option>
                <option value="2">荔枝</option>
                <option value="3" selected="selected">葡萄</option>
                <option value="4">香蕉</option>
            </select><br /><br />
            <div id="tip"></div>
            </form>
            
            <script type="text/javascript">
                var $txtOpt = $("#frmTest :selected").text();
                $("#tip").html("选中内容为:" + $txtOpt);
            </script>
        </body>
  • 相关阅读:
    感知机学习笔记
    NOIP 模拟19
    NOIP 模拟17
    NOIP模拟14-16
    「动态规划」-数位dp专题
    8.5 NOIP 模拟测试 13
    8.3 NOIP 模拟12题解
    8.3 NOIP CE反思
    「分治」-cdq分治
    8.1 NOIP模拟11
  • 原文地址:https://www.cnblogs.com/emmaBlogs/p/5292328.html
Copyright © 2020-2023  润新知