📜  javascript 发送帖子 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:14.061000             🧑  作者: Mango

代码示例2
function httpGetAsync(url, callback) {
  var xmlHttp = new XMLHttpRequest();
  xmlHttp.onreadystatechange = function() { 
    if (xmlHttp.readyState == 4 && xmlHttp.status == 200)
      callback(xmlHttp.responseText);
  }
  xmlHttp.open("GET", url, true); // true for asynchronous 
  xmlHttp.send(null);
}