Jquery Ajax Alert

时间:2013-07-02 08:28:13

标签: php jquery ajax echo alert

我有多个具有以下相同格式的函数:

function xxx
    $.ajax({
        type: "POST", 
        url: "orders.php",
        data: {"error":"0","type": "inform","result4": $orderid},
        dataType: 'json', 
        success: function(data) {
        if (data.error != 0) {
            // An error occurred on server: do something 
        } else {
            Alert("Informed");
        }
    }
    });

    }

我调用的另一个PHP文件将返回:

echo json_encode(array("error"=>0, "result4"=>"Pass"));

1)如何让它显示警报,它不想运行警报。

2)如何在运行时在每个上面显示加载GIF加载?

2 个答案:

答案 0 :(得分:4)

使用alert而不是Alert

您可以使用ajaxStart作为jquery的一部分来显示加载.gif

$(document).ajaxStart(function() {
   $("#loading").show();
});

loading是具有loading.gif

的元素

答案 1 :(得分:0)

我认为它的拼写错误警告 => 警告

此功能还应在()

中设置function xxx

encoding json

中的php后返回