标签:ajax传输数据的业务实现 ajax传输数据 ajax
ajax传输数据的业务实现:
1.创建xmlHttpRequest对象;作用:服务器与浏览器完成数据交互。
if(window.XMLHttpRequest){//IE7及以上版本
xmlHttpRequest=new xmlHttpRequest();
}else{
xmlHttpRequest=new activeObject("Micrisoft.XMLHTTP");
}
2.设置返回参数;
xmlHttpRequest.onreadystatechange="函数名";
3.初始化xmlHttpRequest对象;
get、post。
get:
url="请求路径?参数名=参数值"(多个值时用&连接)
xmlHttpRequest.open(get,url,是否异步(true或false));
xmlHttpRequest.send(null);
post:
xmlHttpRequest.open(post,url,是否异步(true或false));
xmlHttpRequest.setRequestHeader("Content-type","appliction/x-www-form-urlencoded");
String parm="name="+name值;
xmlHttpRequest.send(parm);
4.发送请求。
get:
xmlHttpRequest.send(null);
标签:ajax传输数据的业务实现 ajax传输数据 ajax
原文地址:http://blog.csdn.net/han_ying_ying/article/details/43530897