HTML-封装原生Ajax
2018-06-24 01:31:09来源:未知 阅读 ()
function ajax(data){ //data{data:"",dataType:"xml/json",type:"get/post",url:"",asyn:"true/false",success:funtion(){},failure:function(){}} //datapost={username:123,pwd=456} //dataGet="username=123&pwd=456" //第一步:创建XHR对象 var xhr=null; if(window.XMLHttpRequest){//标准的浏览器 xhr=new XMLHttpRequest(); }else{ xhr=new ActiveXObject('Microsoft.XMLHTTP'); } //第二步:准备发送前的一些配置参数 var type=data.type=='get'?'get':'post'; var url=''; if(data.url){ url=data.url; if(type=='get'){ url+="?"+data.data+'&_t='+new Date().getTime();//(就是dataGet) } } var flag=data.asyn=='true'?'true':'false'; xhr.open(type,url,flag); //第三步:执行发送的动作 if(type=='get("Content-Type","application/x-www-form-urlencoded") xhr.send(data.data);//就是dataPost } //第四步:指定回调函数 xhr.onreadstatechange=function(){ if(this.readyState==4){ if(this.status==200){ if(typeof data.success=='function'){ var d=data.dataType=='xml'?this.responseXML:this.responseText; data.success(d); } }else{ if(typeof data.failure=='function'){ data.failure(); } } } } }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:关于模板引擎一
下一篇:markdown基础
- 封装好通用的reset.css base.css 样式重置css文件 2020-02-25
- 基于原生的 html css js php ajax做的一个 web登录和注册系 2020-02-21
- Web基础了解版01-html-css 2019-12-17
- [开源] 基于Layui组件封装的后台模版,HG-Layui-UI通用后台 2019-12-07
- tab栏切换 2019-11-21
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash