Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要将 php 变量传递给 jquery 函数。php 变量是一个未知大小的数组。有没有办法将数组的每个成员传递给函数单独处理?
我猜你应该使用 JSON 将 php 变量传递给 jquery。这是最简单的方法。
您可以使用 JSON 打印数组并解析它以接收 JS 对象。
我假设您使用 AJAX(直接打印到 javascript 源代码是可能的,但不明智)。
您的 php 脚本需要直接打印输出:
print_r(json_encode($data_array));
在接收端使用 $.parseJSON:
var data_array = $.parseJSON(ajax_result);