首页 > 代码库 > 指定查询范围
指定查询范围
<!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="http://www.mamicode.com/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="http://www.mamicode.com/点击"/></body></html>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。