4

我有一个带有此验证的表格

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();
4

2 回答 2

3
if(input.length==0 && select.length == 0){
   $(this).attr('action', 'url_to_submit').submit(); 
}
于 2012-05-20T15:58:42.857 回答
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 );
于 2012-05-20T15:59:23.100 回答