AJAX

作者: fa54021d36e2 | 来源:发表于2016-09-24 23:40 被阅读0次

    什么是ajax

    Asynchronous JavaScript and XML(异步javascript和xml)

    ------节省用户操作,时间,提高用户体验,减少数据请求

    -------传输获取数据

    使用Ajax

    使用ajax获取某一文本文件的内容

    ajax过程详解

    创建对象XMLHttpRequest()

    ActiveXObject(“Microsoft.XMLHTTP”)

    try{

    xhr=newXMLHttpRequest();

    }catch(e){

    xhr=newActiveXObject("Microsoft.XMLHTTP");

    }

    xhr.open("get","hello.txt",true);

    xhr.send();

    xhr.onreadystatechange=function(){

    if(xhr.readyState==4){

    if(xhr.status==200){

    alert(xhr.responseText);

    }

    }

    }

    相关文章

      网友评论

          本文标题:AJAX

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