ajax异步请求

ajaxtony 2019-11-01

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)

}

}

相关推荐

mmywcoco / 0评论 2020-06-06