显示通知更新表单项时

时间:2012-12-12 16:43:42

标签: jquery notifications

我正在使用此功能捕获表单上的事件。

$( '.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以及如何?

谢谢:)

1 个答案:

答案 0 :(得分:0)

我通过在

之后调用通知功能来实现这一点
function( response ) {
            CurrectForm.find('#form').html( response );
        }

现在正在按照我的意愿行事:)