您的代碼應該是這樣的
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();
}
你應該預料到行動的看法等做了正常的蛋糕加工,在控制器中獲取數據,渲染視圖,如果有錯誤設置的操作autorender假。
但我只是建議你下載的Jquery添加到您的CakePHP框架這種簡單的線條
$("divToDisplayInfo's_ID").load("Controllername/action")
解決您的問題。
你可以使用ajax。 – Vishal 2012-08-17 06:10:27
你知道嗎javascript或jquery? – 2012-08-19 01:21:28
有人可以給我一個例子,我搜索了4個小時,什麼都沒有... – user1606032 2012-08-19 01:45:00