你的代码应该是这样的
function showCustomer(str)
{
var xmlhttp;
if (str=="")
{
document.getElementById("divtoDisplayInfo").innerHTML="";
return;
}
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("divtoDisplayInfo").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","/yoursite/controllername/action/str,true); //if you use redirect and windows environment
xmlhttp.send();
}
您应该期待该操作的视图,因此进行正常的蛋糕处理,在控制器中获取数据,渲染视图,如果有错误将操作自动渲染设置为 false。
但我只是建议你下载 Jquery 添加到你的 cakephp 框架这个简单的行
$("divToDisplayInfo's_ID").load("Controllername/action")
解决你的问题。