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 数据库。

有什么方法可以在屏幕上显示“更新成功”的通知?我一直在看: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 回答