如何从jquery post中的php函数获取特定的回显值

时间:2016-05-20 06:12:17

标签: javascript php jquery

我有两个名为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);

提前致谢。

0 个答案:

没有答案