码迷,mamicode.com
首页 > 其他好文 > 详细

AJAX——基础

时间:2014-09-23 22:08:05      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:style   http   io   os   ar   sp   cti   on   c   

function Getjson()
{
  var str = "NKXZPJ.ashx";
  var xhr = makexhr();
  xhr.open("Post", str, true);
  xhr.onreadystatechange = function ()
  {
    if (xhr.readyState == 4 && xhr.status == 200)
    {
      var res = xhr.responseText;
      return res;
    }
  }
  xhr.send(null);
}
//xhr 辅助方法;
function makexhr()
{
  var xhr1;
  try
  {
    if (window.XMLHttpRequest)
      xhr1 = new XMLHttpRequest();
    else if (window.ActiveXobject)
      xhr1 = new ActiveXobject("Microsoft.XMLHTTP");
    return xhr1;
  }
  catch (e)
  {
    alert("无法发送!");
  }
}

AJAX——基础

标签:style   http   io   os   ar   sp   cti   on   c   

原文地址:http://www.cnblogs.com/SunBlog/p/3989212.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!