JS的Ajax对象

Posted dbhui

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS的Ajax对象相关的知识,希望对你有一定的参考价值。

  //1.得到对象
    var ajax = new XMLHttpRequest();

    //2.建立连接
    ajax.open(‘post‘,‘./2.php‘,true);

    /*
        使用post发送数据
        需要设置一个请求头
        描述数据类型
     */
    ajax.setRequestHeader("Content-type","application/x-www-form-urlencoded");

    //发送
    ajax.send(‘id=5&name=zhangsan&age=18‘);
    //准备事件
    ajax.onreadystatechange = function(){
        //判断
        if (ajax.readyState == 4 && ajax.status == 200) {
            //处理带回的数据
            var result = ajax.responseText;
            alert(result);
        }
    }
























以上是关于JS的Ajax对象的主要内容,如果未能解决你的问题,请参考以下文章

创建ajax对象

jq的ajax方法

Ajax原生的js(XMLHttpRequest对象)--实现局部刷新

ajax返回为对象,怎样得到对象的属性值

js-ajax实现获取xmlHttp对象

用JS实现Ajax请求