我的问题很简单,我收到字符串和一个数字,但只显示数字我如何同时显示两者?
$.ajax({
type: "POST",
url: "data.php",
data: "act="+nr,
success: function (result) {
var arr = JSON.parse(result);
if ($.isArray(arr) == true) {
$.each(arr, function (i, n) {
$('#s_main #s_info').html("<p>+" + n + "</p>")
});
}
}
})
}); //ends here
我的PHP:
$act = $_POST['act'];
$output =array();
$act2 = "TXT!!!";
array_push($output,$act);
echo json_encode($output);
顺便说一句,当我使用 append 而不是 html 结果是正确的,但它会堆叠而不是删除以前的数据