Skip to content

原生ajax库,实现jsonp跨域,短小精悍。

Notifications You must be signed in to change notification settings

jys125773/ajax-module

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

ajax-module

原生ajax库,实现jsonp跨域。

ajax({
    type:"get",
    url:"", 
    timeOut:5000,
    before:function(){
      
    },
    success:function(str){
        
    },
    error:function(){
        
    }
});

参数表:

参数 默认值 描述 可选值
url "" 请求的链接 string
type get 请求的方法 get,post
data null 请求的数据 object,string
contentType "" 请求头 string
dataType "" 请求的类型 jsonp
async true 是否异步 blooean
timeOut undefined 超时时间 number
before function(){} 发送之前执行的函数 function
error function(){} 请求报错执行的函数 function
success function(){} 请求成功的回调函数 function

About

原生ajax库,实现jsonp跨域,短小精悍。

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published