我在javascript中使用ajax将数据导入同一页面。但我需要从我的php页面中获取特定变量,而不是整个响应..
现在我正在使用,
document.getElementById("myDiv").innerHTML=xmlhttp.responseText;
从该页面获取所有内容。
Edited Code-PHP:
$currentscript = $clients->curr_group_content($_POST['group']);
$scriptscount = sizeof($currentscript);
for($i=0;$i<$scriptscount;$i++){
$script[] = $currentscript[$i]['subject'];
echo $script[$i];
}
echo "$scriptcount";
JAVASCRIPT:
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("myDiv").innerHTML=xmlhttp.responseText;
}
现在,我从$ script和$ scriptcount获取所有数据...... 我想要这两个但是以不同的方式。
答案 0 :(得分:1)
使您的PHP输出JSON:
echo json_encode(array(
'scriptcount'=> $scriptcount,
'script'=> $script
));
(不要回复PHP中的任何其他内容)
然后在JS:
var data = JSON.parse(xmlhttp.responseText);
document.getElementById("myDiv").innerHTML = data.scriptcount;