XMLHttpRequest对象用于客户端与服务器端进行数据交换
这个对象有两个方法:1.open(method,url,async);
参数解释:
1.method,定义请求类型Get或者post
2.url,文件在服务器上的位置
3.async,是否异步?true or false
2.send(string)
作用:将请求发送到服务器,其中参数string仅用于post方法
XMLHttpRequest对象用于客户端与服务器端进行数据交换
这个对象有两个方法:1.open(method,url,async);
参数解释:
1.method,定义请求类型Get或者post
2.url,文件在服务器上的位置
3.async,是否异步?true or false
2.send(string)
作用:将请求发送到服务器,其中参数string仅用于post方法
本文标题:Ajax-XMLHttpRequest请求对象
本文链接:https://www.haomeiwen.com/subject/wfobyxtx.html
网友评论