我有一个带有此验证的表单
$("#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();
});
如果没有错误我想在提交之前设置提交的网址,我的意思是在声明之前
$(this)[0].submit();
答案 0 :(得分:3)
if(input.length==0 && select.length == 0){
$(this).attr('action', 'url_to_submit').submit();
}
答案 1 :(得分:2)
您需要使用:
$(this).submit();
修改: (OP评论后)
如果您想使用javascript中的某些特定值提交表单:
在表单中添加两个字段:
<input type='hidden' name='currentRelation' id='currentRelation'>
<input type='hidden' name='currentConcept' id='currentConcept'>
现在在jQuery中你需要在提交之前执行此操作:
// Get values from HTML (According to your previous question)
var ioAddConcept = $(".ioAddConcept").html();
var ioAddRelation = $(".ioAddRelation").html();
// Set these values to hidden fields
$('#ioAddConcept').text( ioAddConcept );
$('#ioAddRelation').text( ioAddRelation );
// Now submit form
$(this).submit();
现在在服务器端:
print_r( $_POST );
// OR
print_r( $_GET );