0

我对 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
            }
        });
    });
});
4

1 回答 1

0

尝试这样做:

$.ajax({
    url: '<?php echo site_url("testing/tambah") ?>',
    type: 'post',
    data: data
}).done(function ( data ) {
    $('#message').html('<h1><sukses</h1>');
});
于 2013-06-01T05:42:55.517 回答