使用$ .get区分数据

时间:2014-02-20 06:31:14

标签: php jquery ajax get

假设我有一个回显2个数字的php页面Data2.php。例如23443和4.所以php页面看起来像这样:

234434

我希望$ .get来区分每个数字。我怎么能这样做?

例如:

 $.get("Data2.php", function (firstnumber) {
 });

 $.get("Data2.php", function (secondnumber) {
 });

我已经考虑过将它们回应为div和类似的东西。但有更好的方法吗?

1 个答案:

答案 0 :(得分:0)

只需将响应作为JSON数组返回,如:

$response= array('first'=>23443, 'second'=>4);

echo json_encode($response);

在AJAX中,

$.get("Data2.php", function (response) {
   var firstnum  = response.first,
       secondnum = response.second;
   alert(firstnum + ', '+ secondnum);
},"json");