摘要:
$("#buy").click(function(){ $("input[type=checkbox]").each(function(i){ if($(this).attr('checked')){ alert(this.value); } }); }); 阅读全文
摘要:
jquery-1.5.2.js以上版本<script type="text/javascript"> $(function(){ $(':checkbox[name=cb]').each(function(){ $(this).click(function(){ if($(this).attr('checked')){ $(':checkbox[name=cb]').removeAttr('checked'); $(this).attr('chec... 阅读全文