问题
我正在尝试记录从 JSON 调用返回的数据,console.log(jsonData)
但似乎无法正常工作。
代码
$(document).ready(function() {
$("#users li a:first-child").click(function() {
var id = this.href.replace(/.*=/, "");
this.id = "delete_link_" + id;
if(confirm("Are you sure you want to delete this user?"))
{
$.getJSON("delete.php?ajax=true&id=" + id, function(data) {
console.log(data.success);
});
}
return false;
});
});
返回者delete.php
{"id": $id, "success": 1}
成功后。
{"id": $id, "success": 0, "error": "Could not delete user."}
失败时。