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 から特定の値を指定してフォームを送信する場合:

次のように、フォームに 2 つのフィールドを追加します。

<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 に答える