码迷,mamicode.com
首页 > Web开发 > 详细

JQuery选择器*^$

时间:2015-02-10 18:32:53      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:

 1     <script type="text/javascript">
 2     var b = 1;
 3     function a() {
 4         $("input[type=checkbox][name*=in]").each(function () { this.checked = b; });
 5         //$("input[type=checkbox][name^=in]").each(function () { this.checked = b; });
 6         //$("input[type=checkbox][name$=in]").each(function () { this.checked = b; });
 7         b = !b;
 8     }
 9     </script>
10 </head>
11 <body>
12     <input type="checkbox" name="ainput11" />
13     <input type="checkbox" name="ainput12" />
14     <input type="checkbox" name="ainput13" />
15     <input type="submit" name ="button1" onclick="a();"/>
16 </body>

 

JQuery选择器*^$

标签:

原文地址:http://www.cnblogs.com/JJ.Net/p/4284416.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!