摘要: function selectAll(obj) { if (obj.checked) { $("input[type='checkbox']").each(function () { $(this).attr('checked', 'checked'); }); } else { $("input[type='checkbox']").each(function () { $(this).removeAttr('checked'); }); } } f... 阅读全文
posted @ 2013-10-17 09:28 莫等闲也 阅读(1010) 评论(0) 推荐(0)