您好,登录后才能下订单哦!
这篇文章主要介绍了ajax函数怎么用,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。
代码如下:
/* 
调用方式: 
1.POST方式 
var txt = escape(sender.value); //document.getElementById("<%= txtName.ClientID %>").value); 
var data = "name=" + txt + "&pwd=" + txt; 
var option = { "url": "handler/Handler.ashx" 
, "action": "POST" 
, "callback": function(){ 
if (xmlHttp.readyState == 4) {//服务器给了回应 
if (xmlHttp.status == 200) {//服务正确响应 
alert(xmlHttp.responseText); 
} 
xmlHttp = null; //回收资源 
} 
   } 
, "data": data 
}; 
ajax(option); 
2.GET方式 
var txt = escape(sender.value); //document.getElementById("<%= txtName.ClientID %>").value); 
var option = { "url": "handler/Handler.ashx&name=" + txt + "&pwd=" + txt 
, "action": "POST" 
, "callback": function(){ 
if (xmlHttp.readyState == 4) {//服务器给了回应 
if (xmlHttp.status == 200) {//服务正确响应 
alert(xmlHttp.responseText); 
} 
xmlHttp = null; //回收资源 
} 
   } 
}; 
ajax(option); 
*/ 
function ajax(option) { 
createXMlHttpRequest(); //创建xmlHttpRequest 对象 
if (option != null && option != undefined) { 
if (option.url == null && option.url == undefined) { 
xmlHttp = null; 
alert("缺少必要参数option.url"); 
return; 
} 
if (option.action == null && option.action == undefined) { 
xmlHttp = null; 
alert("缺少必要参数option.action"); 
return; 
} 
xmlHttp.open(option.action, option.url, true); 
if (option.contentType != null && option.contentType != undefined) { 
xmlHttp.setRequestHeader("Content-Type", option.contentType); 
} else { 
xmlHttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); 
} 
if (option.callback != null && option.callback != undefined) { 
xmlHttp.onreadystatechange = option.callback; 
} 
if (option.action.toUpperCase() == "POST") { 
xmlHttp.send(option.data); 
} else { 
xmlHttp.send(null); 
} 
} 
} 
var xmlHttp; //调用完成后最好回收下 xmlHttp = null; 
/*获取元素*/ 
function g(arg) { 
var t = document.getElementById(arg); 
if (null != t && t != undefined) { 
return t; 
} 
t = document.getElementsByName(arg); 
if (null != t && t != undefined) { 
return t; 
} 
t = document.getElementsByTagName(arg); 
if (null != t && t != undefined) { 
return t; 
} 
} 
/*创建ajax请求对象*/ 
function createXMlHttpRequest() { 
try {//Firefox, Chrome, Surfri, Opera+8 
xmlHttp = new XMLHttpRequest(); 
} 
catch (ie) { 
try {//IE6+ 
xmlHttp = new ActiveXObject("Msxml2.XMLHTTP"); 
} catch (ie) { 
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP"); 
} 
} 
return xmlHttp; 
}
感谢你能够认真阅读完这篇文章,希望小编分享的“ajax函数怎么用”这篇文章对大家有帮助,同时也希望大家多多支持亿速云,关注亿速云行业资讯频道,更多相关知识等着你来学习!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。