/*
    * AJAX基础内容
    * Asynchronous Javascript and XML
    * 通过在后台与服务器进行少量数据交换,AJAX可以使网页实现异步更新
    *
    * ajax基本工作原理:
        *XMLHttpRequest是ajax的基础
        * XMLHttpRequest用于后台与服务器交换数据
        *
        * XMLHttpRequest对象请求:
        *   open(method,url,async)
        *   send(string)
        *XMLHttpRequest对象响应:
        * responseText
        * responseXML
        *
        * onreadystatechange
        * readyState: 0 请求未使用初始化
        *             1 服务器连接已建立
        *             2 请求已接收
        *             3 请求处理中
        *             4 请求以完成 且响应已就绪
        *status: 200  400
        *
        *
    *
    * jQuery的ajax操作:
    * 常用方法:
    *   $(ele).load()
    *   $.ajax()
    *   $.get()
    *   $.post()
    *   $.getJSON()
    *   $.getScript()
    *
    *
    * */