首页 > 其他 > 详细

指定查询范围

时间:2014-06-14 11:10:23      阅读:402      评论:0      收藏:0      [点我收藏+]
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title></title>
    <script src="Scripts/jquery-1.8.2.min.js"></script>
    <script type ="text/javascript">
        $(function () {
            $("#btn1").click(function () {
                //获取页面第一个表单
                var form = $("form:first");

                //指定选择器的查询上下文为form
                //如果没有为选择器指定上下文(只传一个参数)jq会到dom树里面查找
                //如果加了上下文(传递了两个参数),那么jq就到第二个参数里查找
                var checkedBox = $("input[name=chkl]:checked", form); //到指定的上下文里查找
                alert(checkedBox.length);
            });
           
        });
    </script>
</head>
<body>
    <form action="" method ="post">
       用户名:
        <input type ="text" />
        密码:
        <input type ="password" />
        <input type ="checkbox" name="chkl" />
         <input type ="checkbox" name="chkl" />
         <input type ="checkbox" name="chkl" />
    </form>
    <input type ="button" id="btn1" value="点击"/>
</body>
</html>

  

 

指定查询范围,布布扣,bubuko.com

指定查询范围

原文:http://www.cnblogs.com/sumg/p/3787718.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!