javascript如何实现ajax

 我来答
bruce203
2009-04-15 · TA获得超过454个赞
知道小有建树答主
回答量:99
采纳率:0%
帮助的人:171万
展开全部
var http_request=false;
function sendRequest(method,url,content,processResponse)
{
http_request=false;
if(window.XMLHttpRequest) //mozilla
{
http_request=new XMLHttpRequest();
}else if(window.ActiveXObject) //IE
{
try
{
http_request=new ActiveXObject("Msxml2.XMLHTTP");
}catch(e)
{
http_request=new ActiveXObject("Microsoft.XMLHTTP");
}
}
if(!http_request)
{
alert("异步通信对象创建失败!");
return;
}

if(method.toLowerCase()=="get")
{
http_request.open(method,url,true);
http_request.onreadystatechange=processResponse;
http_request.send(content);
return;
}
if(method.toLowerCase()=="post")
{
http_request.open(method,url,true);
http_request.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
http_request.onreadystatechange=processResponse;
http_request.send(content);
return;
}
}
function getResult()
{
if(window.http_request.readyState==4)
{
if(window.http_request.status==200)
{
//这是返回的结果
var rText=window.http_request.responseText;
//处理结果
if(rText=="true")
{
alert("用户名称已经存在");
}else{
alert("用户名称可以使用");
}
}
}
}
//调用
sendRequest("POST","user.do","userName="+name,getResult);
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
wangshiyi95
2009-04-17 · TA获得超过2418个赞
知道大有可为答主
回答量:1709
采纳率:0%
帮助的人:0
展开全部
看到一楼
if(window.XMLHttpRequest) //mozilla
这一行的注释,我想说其实xmlhttprequest不仅是mozilla的东西,ie7+,还有除ie外的所有现代浏览器都是支持xmlhttprequest的
这些代码就是一个最基本的ajax通信了,不过ajax还有很多内容里面没有的
像设置header,post请求,cometd等
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友07d7337e8
2009-04-15 · TA获得超过170个赞
知道小有建树答主
回答量:220
采纳率:0%
帮助的人:188万
展开全部
额,这可不是一两句话说的清楚的,去网上搜搜基础教程吧,更着做1,2个就会了
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
韦涵涵
2009-04-15 · TA获得超过3892个赞
知道大有可为答主
回答量:1034
采纳率:100%
帮助的人:1492万
展开全部
一楼的例子如果楼主能看懂那就好了....如果看不懂或是

弄不好...我这有个简单的例子...可以发给楼主....百度HI我吧!!

关键是能让楼主会就行了...呵呵 ...

祝楼主早日成功!!!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式