gpt4 book ai didi

javascript - 将 php 数组发送到 jquery ajax 并从该数组进行每个循环

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:56:31 25 4
gpt4 key购买 nike

您好,实际上我阅读了很多关于数组和 jquery 的主题,它们都展示了在 hmtl 脚本标记中使用 jquery 的示例,但我试图学习的是如何在 js 文件中读取由 php 通过 ajax 发送的数组

这是我的 php 示例

$record = array('jazz','rock', 'punk', 'soft', 'metal');
echo json_encode($record);

然后这是我的ajax

$.ajax({
url: "system/music_list.php",
dataType: 'json',
cache: false,
success: function(response){
// here i want to read the array and make a loop for each element
},
});

如果你能帮助我,谢谢

最佳答案

尝试使用 length 进行计数的基本 for 循环 这 .. 这肯定会有所帮助。

 function ajax_test()
{
$.ajax({
url: "system/music_list.php",
dataType: 'json',
cache: false,
success: function(response)
{
for (var i = 0; i < response.length; i++)
{
alert(response[i]);
}
}
});
}

关于javascript - 将 php 数组发送到 jquery ajax 并从该数组进行每个循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35402370/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com