jQuery成功函数没有在我的程序中运行

时间:2013-05-31 19:14:23

标签: jquery ajax codeigniter

我遇到了jQuery AJAX的问题。我成功调用了URL,但是AJAX成功函数没有运行。

我使用的是jQuery 2.0,这是我的代码:

怎么了?

$(document).ready(function () {
    $('#simpan').click(function(){
    var data= $('#form').serialize();
    $.ajax({
            url: '<?php echo site_url("testing/tambah") ?>',
            type: 'post',
            data: data,
            success: function (html) {
                $('#message').html('<h1><sukses/h1>'); // this not running
            }
        });
    });
});

1 个答案:

答案 0 :(得分:0)

尝试这样做:

$.ajax({
    url: '<?php echo site_url("testing/tambah") ?>',
    type: 'post',
    data: data
}).done(function ( data ) {
    $('#message').html('<h1><sukses</h1>');
});