标签:状态 amp text type name cti func nbsp pos
ajax :请求 响应
js
穿件ajax对象
var xhr = XMLHttprequest();
监听ajax状态
发起请求
xhr.open(‘get‘,‘fwq.php?name=zhangsan&age=123‘)
传数据
xhr.sen(null);
jquery
$.ajax({
async:true
url:"",
data:{name:"zhangsan",age:12}
type:"post"
datatype:"text",
sunccess:function(data){
}
});
标签:状态 amp text type name cti func nbsp pos
原文地址:https://www.cnblogs.com/a709898670/p/9234893.html