jquery mobile多次提交表单

时间:2015-07-02 10:42:40

标签: jquery ajax jquery-mobile-ajax

我是jquery mobile的新手。我正在使用jquery mobile开发一个应用程序。我有一个提交火灾多次提交的表格。代码如下:

$(document).on('click', '#btnUpdateExperience', function() {

    var posting = $.post( "mypage.php", $('#frmabc').serialize() );
    posting.done(function( data ) {         
        $.mobile.loading( "hide" ); 
        if(data == 1)
        {
            $.mobile.changePage("profile.html", {transition:"slide"});
            return false;
        }
        else
        {
            showToastMessage(data); 
        }

    });
});

请告诉我错误的地方。

0 个答案:

没有答案