我有多个具有以下相同格式的函数:
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加载?
答案 0 :(得分:4)
使用alert
而不是Alert
您可以使用ajaxStart
作为jquery的一部分来显示加载.gif
$(document).ajaxStart(function() {
$("#loading").show();
});
loading是具有loading.gif
答案 1 :(得分:0)
我认为它的拼写错误警告 => 警告
此功能还应在()
function xxx
在encoding json
php
后返回