码迷,mamicode.com
首页 > 其他好文 > 详细

2018.6.27

时间:2018-06-27 17:33:12      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:状态   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){

}

});

 //jQuery
$.ajax({
async:true,
url:"fwq.php",
data:{name:"zhangsan",age:12},
type:‘post‘,
dataType:‘text‘,
success:function(data){

}
});

2018.6.27

标签:状态   amp   text   type   name   cti   func   nbsp   pos   

原文地址:https://www.cnblogs.com/a709898670/p/9234893.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!