假设我有一个回显2个数字的php页面Data2.php。例如23443和4.所以php页面看起来像这样:
234434
我希望$ .get来区分每个数字。我怎么能这样做?
例如:
$.get("Data2.php", function (firstnumber) {
});
$.get("Data2.php", function (secondnumber) {
});
我已经考虑过将它们回应为div和类似的东西。但有更好的方法吗?
答案 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");