标签:
xhr.open(res.method,res.url,true);
ajax({
url: ......(后台接受的路径) ,
succFn:function ( ){
//发送成功调用
},
failureFn:function ( ){
//发送失败调用
},
method:......(发送方式)
});
注意:url 处能够插入各种各样的文件,如HTML文件、PHP文件、txt文件 ......
标签:
原文地址:http://www.cnblogs.com/pan-hello/p/4565179.html