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()。
答案 0 :(得分:0)
<强> JS 强>
function() countChecked {
return $("input:checked").length;
};
$(function(){
$("div#signup label").checkmate();
$( "div#signup label" ).click(function(e) {
var count = countChecked();
if ( count < 6 ) {
e.preventDefault();
e.stopPropagation();
alert(count);
}
});
});