我有这个代码:
$(".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 控制台中调用该成功函数,我通过成功消息模板获得所需的响应,