2

我有这个代码:

$(".myform").live('submit', function(e){   
    var options = { 
        target: '.ajaxMessage',
        // target element(s) to be updated with server response 
        beforeSubmit:  showRequest,
        success: function(data) {   
            alert(data);
            //$('#dialog-confirm').dialog('close');
            //$(".ajaxMessage").html(data).show().delay('5000').fadeOut("5000");
        },
        type: 'POST'

$(".myform").ajaxForm(options);

Firefox 控制台将此显示为响应

Response

1{"code":"OK"}

我的数据已正确插入数据库,但我也无法在 Firefox 控制台中调用该成功函数,我通过成功消息模板获得所需的响应,

4

1 回答 1

0

尝试共享更多代码或使用 JsFiddle 进行代码共享,无论如何,我假设我正在共享代码,希望它对你有用:

$(".myform").on('submit', function(e){   
    var options = { 
        target: '.ajaxMessage',
        // target element(s) to be updated with server response 
        beforeSubmit:  showRequest,
        success: function(data) {   
            alert(data);
            //$('#dialog-confirm').dialog('close');
            //$(".ajaxMessage").html(data).show().delay('5000').fadeOut("5000");
        },
        error: function(){
        alert('Error!!!')
        },
        type: 'POST'
    }
});
于 2012-08-01T07:36:40.333 回答