Ajax最底层的异步调用



所有现代浏览器均支持 XMLHttpRequest 对象(IE5 和 IE6 使用 ActiveXObject)。

XMLHttpRequest 用于在后台与服务器交换数据。这意味着可以在不重新加载整个网页的情况下,对网页的某部分进行更新。

open(method,url,async)

规定请求的类型、URL 以及是否异步处理请求。

  • method:请求的类型;GET 或 POST
  • url:文件在服务器上的位置
  • async:true(异步)或 false(同步)
send(string)

将请求发送到服务器。

  • string:仅用于 POST 请求

与 POST 相比,GET 更简单也更快,并且在大部分情况下都能用。

然而,在以下情况中,请使用 POST 请求:

  • 无法使用缓存文件(更新服务器上的文件或数据库)
  • 向服务器发送大量数据(POST 没有数据量限制)
  • 发送包含未知字符的用户输入时,POST 比 GET 更稳定也更可靠

<head>
    <script type="text/javascript">
  function loadXMLDoc()
  {
  var xmlhttp;
  if (window.XMLHttpRequest)
    {// code for IE7+, Firefox, Chrome, Opera, Safari
    xmlhttp=new XMLHttpRequest();
    }
  else
    {// code for IE6, IE5
    xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
    }
  xmlhttp.onreadystatechange=function()
    {
    if (xmlhttp.readyState==4 && xmlhttp.status==200)
      {
      document.getElementById("myDiv").innerHTML=xmlhttp.responseText;
      }
    }
  xmlhttp.open("GET","1.jsp",true);
  xmlhttp.send();
  }
 </script>
 </head>
<body>
 <h2>AJAX</h2>
 <button type="button" onclick="loadXMLDoc()">请求数据</button>
 <div id="myDiv"></div>

</body>

这是1.jsp

<body>
    <table width="200" height="200" bgcolor="#555555">
     <tr>
      <td>asd</td>
      <td>d</td>
      <td>f</td>
     </tr>
    </table>
    <table width="200" height="200" bgcolor="#555555">
     <thead>
      <tr>
       <td>asd</td>
      </tr>
     </thead>
    </table>
  </body>

你可能感兴趣的:(JavaScript,Ajax,浏览器,异步)