我有两个名为sample_api.php和test.js的文件。
sample_api.php有以下代码段,
var makeupCatBrand = $('span.caption').children('h6').map(function(){return $(this).text()}).get().join(',');
test.js:
echo "starting of file";
echo "Executing function";
function valueReturn(){
$result = array('0'=>array('0'=>'id1',1=>'name1'),'1'=>array('0'=>'id2','1'=>'name2'));
echo json_encode($result);
}
echo "end";
$.post( api, params, function (data) {
var result = data;
alert(result);
包含所有字符串:
启动文件
执行功能
{[[&#39; ID1&#39;&#39; NAME1&#39;],[&#39; ID2&#39;&#39; NAME2&#39;]])< /强>
端
如何才能在test.js中仅获取result
所有回显的字符串,例如json_encode($result);
?
提前致谢。