我是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);
}
});
});
请告诉我错误的地方。