码迷,mamicode.com
首页 > Web开发 > 详细

ajax异步请求

时间:2019-11-01 20:07:55      阅读:80      评论:0      收藏:0      [点我收藏+]

标签:status   state   无刷新   服务   http   res   异步   pen   客户   

ajax异步请求是指客户端和服务端无刷新的请求交互技术。

var xhr = new XMLHttpRedueft//请求

xhr.onreadystatechange = fn

xhr.open( ‘请求方式get/post’,‘请求地址‘ )

xhr.send(’get时ntll,post是数据‘)

function fn(

if(xhr.readystate==4 && xhr.status==200){

alert(xhr,responseText)

}

}

ajax异步请求

标签:status   state   无刷新   服务   http   res   异步   pen   客户   

原文地址:https://www.cnblogs.com/bahkkba/p/11779108.html

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