美文网首页
AJax 第一天

AJax 第一天

作者: 张鑫冲 | 来源:发表于2018-11-09 10:22 被阅读0次

    1,创建一个xhr对象
    var xhr=new XMLHttpRequest
    2,监听xhr状态的改变
    xhr.onreadystatechange=function(){
    属性
    console.log(xhr.ReadrState)
    console.log(xhr.status)
    console.log(xhr.responseText)
    }
    xhr.open('get','.php',true)
    xhr.send(null)

    相关文章

      网友评论

          本文标题:AJax 第一天

          本文链接:https://www.haomeiwen.com/subject/gplnxqtx.html