JQuery查找所有选中的input元素

  • 在一个表单中,查找所有选中的input元素,JQuery的写法
 1 <html xmlns="http://www.w3.org/1999/xhtml">
 2 <head runat="server">
 3     <title></title>
 4     <script src="jQuery/jquery-1.7.1.js" type="text/javascript"></script>
 5     <script type="text/javascript">
 6         $(document).ready(function () {
 7             var x = $("input:not(:checked)+span");
 8             alert(x.length);
 9         });
10     </script>
11 </head>
12 <body>
13     <form id="myform">
14         <input type="text" /><br />
15         <input type="checkbox" /><span>篮球</span><input type="checkbox" /><span>轮滑</span><br />
16         <input type="password" /><br />
17         <input type="submit" />
18     </form>
19 </body>
20 </html>
View Code

         

PS:使用JQuery的过滤选择器:not()

猜你喜欢

转载自blog.csdn.net/weikzhao0521/article/details/52438670
今日推荐