var countChecked = function() {
return $( "input:checked" ).length;
};
$( "div#signup label" ).click( function() {
var count = countChecked();
if ( count < 6 ) {
$( "div#signup label" ).checkmate();
alert( count );
}
} );
当 IF 条件失败时,不会调用 alert(),但仍会调用 .checkmate()。