我有一个使用 jQuery 将值从一个页面传递到另一个页面的简单脚本设置。该值存储在一个数组中。单击链接时,应该将数组的值发送到 community.php 页面,但它不起作用,我不确定如何在社区页面上提取数组的内容,有什么建议吗?
查询
$("#subscribe_link").click(function () {
$.post("community.php", { 'choices[]': ["Jon", "Susan"] });
});
PHP
print_r($choices);