我的jquery验证脚本如下。当我单击提交按钮时,它不会将表单数据提交给mysql。提交按钮称为提交。如果我删除了jquery验证脚本,它会提交给mysql,因此验证脚本存在问题。
Jquery验证脚本:
$(function() {
function validate(id) {
var enabled = ($("input[name='attendance" + id + "']:checked").val() == 'Yes');
if (enabled) {
//Please select option is selected
if ($("#food" + id)[0].selectedIndex == 0 || $("#drink" + id)[0].selectedIndex == 0) {
alert('Please select color');
return false;
}
}
return true;
};
$("input[name^='attendance']").click(function(e) {
var id = this.name.replace('attendance', '');
$("#food" + id + ", #drink" + id).prop("disabled", this.value == 'No');
validate(id);
});
$("input:submit").click(function(event) {
event.preventDefault();
var retVal = false;
$.each([1, 2], function(i, val) {
retVal = (validate(val) || retVal);
});
if (retVal) {
$('list').submit();
}
});
});
提交按钮:
<input type="submit" name="submit" id="submit" value="Submit" />
表单数据:
<form name="colour" action="" method="post" id="list">
答案 0 :(得分:1)
submit()
中的选择器不正确。您正在通过其ID list
查找表单。您的选择器正在查找名为<list>
的标签。
if(retVal){$('list').submit();}
// Should be
if(retVal){$('#list').submit();}
更新:如果它不会在IE中提交:
if (retVal) {
document.getElementById('list').submit();
}
不是将此绑定到提交按钮的.click()
,而是将其绑定到表单的.submit()
并返回true或false:
// Bind to the form's .submit()
$("#list").submit(function(event) {
event.preventDefault();
var retVal = false;
$.each([1, 2], function(i, val) {
retVal = (validate(val) || retVal);
});
// return the true/false to the submit action
// false will prevent submission.
return retVal;
});