0

これを使用して、フォームで発生するイベントをキャプチャします。

$( '.my-form input[type=checkbox]' ).click( function() {
    var CurrectForm=$(this).parents('.my-form:first');
    $.post(
        'go.php',
        CurrectForm.serialize(),
        function( response ) {
            CurrectForm.find('#form-response').html( response );
        }
    );
} );

$("select").change( function() {
    var CurrectForm=$(this).parents('.my:first');
    $.post(
        'go.php',
        CurrectForm.serialize(),
        function( response ) {
            CurrectForm.find('#form').html( response );
        }
    );
} );

チェックボックスがクリックされるかドロップダウンが変更されるたびに、値が go.php に渡され、MySQL DB が更新されます。

「正常に更新されました」という通知を画面に表示する方法はありますか? 私は見てきました:http://akquinet.github.com/jquery-toastmessage-plugin/demo/demo.html そして、それは私が望むことをします。

しかし、それをメイン ページまたは go.php に追加する必要がありますか?

ありがとう :)

4

1 に答える 1

0

後に通知機能を呼び出すことで、これが機能しました

function( response ) {
            CurrectForm.find('#form').html( response );
        }

これは今、私が望むように機能しています:)

于 2012-12-18T13:39:20.610 に答える