我有一个带有此验证的表格
jQuery
$("#aioForm").on('submit',function(e){
var errorCount = 0;
$('span.errorMessage').text('');
// checkign for multiple select [now you have one]
var select = $('#addIO select').filter(function(){
return this.selectedIndex == 0;
}).next('span').text('Please select a cell');
// checking for inputs
var input = $("#aioForm input[type=text]").filter(function() {
return !this.value;
}).next('span').text("fill the name please");
// no error checking
if(input.length==0 && select.length == 0){
$(this)[0].submit(); // submit form if no error
}
e.preventDefault();
});
如果没有错误我想在提交之前设置要提交的 url,我的意思是在声明之前
$(this)[0].submit();