0

我正在使用 Codigniter 中的 Ajax 以一种形式上传数据和文件,并在对话框中显示 ajax 成功响应,但对话框立即消失,几分钟内不显示结果。这是代码。

$(function(){
$("#pushform").submit(function(){
var formData = new FormData($(this)[0]);
$.ajax({
    url:'<?=base_url()?>addpush',
    type: 'POST',
    data: formData,
    async: false,
    success: function (response) {
    document.getElementById('ajaxresult').innerHTML=response;
        $('#result').dialog({
            autoOpen: true,
            height: 300,
            width:500,
            modal: true,
            duration: 5000
        });
    $('#dialogalert').hide();
    $('#sample').load("<?=base_url()?>pushnotify");
    },
    cache: false,
    contentType: false,
    processData: false
});
return false;
});

请帮我解决这个问题

4

1 回答 1

0

你检查过这条线吗:$('#dialogalert').hide();可能是罪魁祸首!

于 2013-05-02T12:59:40.710 回答