我有一个 ajax 函数,它调用一个返回数组的 php:
<?php
$testing = array("one","two","three", "four");
echo json_encode($testing);
?>
我用这个 ajax 调用来调用它;
$.ajax({
url:"ajax_response.php",
type:"POST",
success:function(msg)
{
var array = msg;
var test = array[2];
alert(test);
}
});
问题是我想将数组 [1] 作为“一”,并且我在每个数组位置上获得 1 个字符,例如:数组 [0] = “o”,数组 [1] = “n”,数组 [2] = “e”。就像 json 编码或某些东西将我的数组变量拆分为字符一样。
有什么帮助吗??
提前致谢