我在javascript中有这个数组:
arr = [1, "string", 3]
而这个,我的ajax调用:
$.post("./ajax_book_client.php",
{'client_info[]': arr},
function(data) {
// some stuffs here
}
});
这是php摘录:
<?php
$arr = $_POST['client_info'];
// I want to access the array, indexed, like this:
$arr[0] = 2;
$arr[1] = "Hello";
$arr[2] = 10000;
?>
但我得到这个错误:
未捕获的类型错误:非法调用 jquery-1.8.3.min.js:2
这样做的正确方法是什么?谢谢!