在我的页面中,我需要将 javascript 中的数组发送到 Phpscript。我的代码没有返回值,也没有给出错误。我怎样才能做到这一点?
arr[0]='one';
arr[1]='two';
arr[2]='three';
arr[3]='four';
$.post(
'sort2.php',
{data:arr},
function(result) {
alert(result[0]);
},
'json'
);
在 sort2.php
$data=$_GET["arr"];
echo json_encode($data);