JQuery选择器*^$
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>
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。