日期:2014-05-16  浏览次数:20597 次

求高手指教ajax问题
我最近在做毕业设计,类似于人人一样的网站,在主页面有个可能感兴趣的人 每次可以显示三个,当点击‘换一换’按钮时应该会改编成下一组的人。但是后台已经执行了,前台却不改变
function RecommendFriend(id){
createXMLHttpRequest();
xmlHttp.onreadystatchange = function(){
if(xmlHttp.readyState == 4) {
if(xmlHttp.status == 200) {
document.getElementById('_widget_relate_user').innerHTML=this.responseText;
}
}
};
xmlHttp.open("GET", "Blog_RecommendFriend.action?timeStamp=" +new Date().getTime()+"&bf.num4="+id,true);
xmlHttp.send(null);
}
这是ajax 方法 _widget_relate_user 这是要插入html的id

求高手指教

------解决方案--------------------
var xmlHttp= createXMLHttpRequest();
xmlHttp.onreadystatchange = function()

--------------------------
还有 bf.num4= 这样的url是否有问题。一步一步alert,总能调出来的。