编码:
<form>
<div class="term"><input type="checkbox" />I agree to the terms of the privacy </div>
<div id="tip"> please agree the terms of the privacy </div>
</form>
jQuery代码:
$(document).ready(function() {
$("#tip").hide();
jQuery("form").submit(function() {
if (jQuery('.term').is(':checked')) {
jQuery("#tip").hide();
}
else {
jQuery("#tip").show();
return false;
}
});
});
当我选中复选框,然后提交表单时,提示仍然显示。为什么?