侃侃无极
$(document).ready(function() { $('input[type=checkbox]').click(function(e) { if ($("input[name='apk[]']:checked").length > 2) { e.preventDefault(); alert("最多选择2个"); } }); })