使用 jQuery/JavaScript 解析 JSON 数据
使用 AJAX 检索 JSON 数据时,需要确保 Content-Type 标头已正确设置为 application/json。如果不是这种情况,您必须手动将数据类型指定为“json”。
要迭代 JSON 数据并显示 div 中的每个名称,您可以使用 $.each() 函数:
$.ajax({ type: "GET", url: "http://example/functions.php", data: { get_param: "value" }, dataType: "json", success: function (data) { $.each(data, function (index, element) { $("body").append($("<div>", { text: element.name })); }); }, });
或者,您可以使用 $.getJSON 方法:
$.getJSON("/functions.php", { get_param: "value" }, function (data) { $.each(data, function (index, element) { $("body").append($("<div>", { text: element.name })); }); });
以上是如何使用 jQuery 的 AJAX 或 $.getJSON 解析和显示 JSON 数据?的详细内容。更多信息请关注PHP中文网其他相关文章!