创建不了XMLHTTP控件

2016-02-19 20:57 15 1 收藏

今天图老师小编给大家精心推荐个创建不了XMLHTTP控件教程,一起来看看过程究竟如何进行吧!喜欢还请点个赞哦~

【 tulaoshi.com - Web开发 】

  最近在用ajax开发服务器程序,发现IE浏览器不支持xmlhttprequest对象,而且找不到Microsoft.XMLHTTP控件。

  问题出现了我们需要解决,解决方案如下:

  1、运行下regsvr32 msxml3.dll;
  2、用现成的框架来做ajax;
  3、代码优化:

  if(window.ActiveXObject)
      {
          xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
      }
      else if(window.XMLHttpRequest)
      {
          xmlHttp = new XMLHttpRequest();
      }

      if(handle_s == null)
          handle_s = "bin/normal.py/db";
      this.xmlHttp.onreadystatechange = handle_l;
      this.xmlHttp.open("GET",handle_s,true);
      this.xmlHttp.send(null);

(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/webkaifa/)

  或判断浏览器

  var agt = navigator.userAgent.toLowerCase();
  var is_ie = (agt.indexOf("msie") != -1);
  var is_ie5 = (agt.indexOf("msie 5") != -1);
  var is_opera = (agt.indexOf("opera") != -1);
  var is_mac = (agt.indexOf("mac") != -1);
  var is_gecko = (agt.indexOf("gecko") != -1);
  var is_safari = (agt.indexOf("safari") != -1);

  function CreateXmlHttpReq(handler) {

  var xmlhttp = null;
  if (is_ie) {
  // Guaranteed to be ie5 or ie6
  var control = (is_ie5) ? "Microsoft.XMLHTTP" : "Msxml2.XMLHTTP";

  try {
  xmlhttp = new ActiveXObject(control);
  xmlhttp.onreadystatechange = handler;
  } catch (ex) {
  // TODO: better help message
  alert("You need to enable active scripting and activeX controls");
  }

  } else {

(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/webkaifa/)

  // Mozilla
  xmlhttp = new XMLHttpRequest();
  xmlhttp.onload = handler;
  xmlhttp.onerror = handler;

  }

  return xmlhttp;
  }

  或者

  script language="javascript"
      var http_request = false;
      function send_request(url) {//初始化、指定处理函数、发送请求的函数
          http_request = false;
          //开始初始化XMLHttpRequest对象
          if(window.XMLHttpRequest) { //Mozilla 浏览器
              http_request = new XMLHttpRequest();
              if (http_request.overrideMimeType) {//设置MiME类别
                  http_request.overrideMimeType('text/xml');
              }
          }
          else if (window.ActiveXObject) { // IE浏览器
              try {
                  http_request = new ActiveXObject("Msxml2.XMLHTTP");
              } catch (e) {
                  try {
                      http_request = new ActiveXObject("Microsoft.XMLHTTP");
                  } catch (e) {}
              }
          }
          if (!http_request) { // 异常,创建对象实例失败
              window.alert("不能创建XMLHttpRequest对象实例.");
              return false;
          }
          http_request.onreadystatechange = processRequest;
          // 确定发送请求的方式和URL以及是否同步执行下段代码
          http_request.open("GET", url, true);
          http_request.send(null);
      }
      // 处理返回信息的函数
      function processRequest() {
          if (http_request.readyState == 4) { // 判断对象状态
              if (http_request.status == 200) { // 信息已经成功返回,开始处理信息
                  var returnObj = http_request.responseXML;
                  var xmlobj = http_request.responseXML;
                  var employees = xmlobj.getElementsByTagName("employee");
                  var feedbackStr = "";
                  for(var i=0;iemployees.length;i++) { // 循环读取employees.xml的内容
                      var employee = employees[i];
                      feedbackStr += "员工:" + employee.getAttribute("name");//取得标签指定属性
                      feedbackStr += " 职位:" + employee.getElementsByTagName("job")[0].firstChild.data;//取得指定标签的最初数据
                      feedbackStr += " 工资:" + employee.getElementsByTagName("salary")[0].firstChild.data;
                      feedbackStr +=  "";
                  }
                  alert(feedbackStr);
              } else { //页面不正常
                  alert("您所请求的页面有异常。");
              }
          }
      }
  /script
  http://www.cnblogs.com/skylaugh/archive/2006/11/20/566164.html

来源:http://www.tulaoshi.com/n/20160219/1624904.html

延伸阅读
在.Net上用字符串动态创建控件是通过反射来实现。 首先,利用System.Type.GetType方法,获得字符串中指定的控件的类型实例。 这里需要注意这个字符串的语法,根据msdn的解释: 按名称和签名隐藏会考虑签名的所有部分,包括自定义修饰符、返回类型、参数类型、标记和非托管调用约定。这是二进制比较。 对于反射,属性和事件按名称和签名隐藏。...
以下不完整例子为生成一个TMemo的派生类及动态地创建该VCL控件。 Class TMemoEx : public TMemo { . . } extern TMemoEx memoex; Class TForm1 : Class TForm { public: TMemoEx *MemoEx; . . } void _fastcall TForm1::FormShow(TObject *Sender) ...
MSXML中提供了Microsoft.XMLHTTP对象,能够完成从数据包到Request对象的转换以及发送任务。 创建XMLHTTP对象的语句如下: Set objXML = CreateObject(Msxml2.XMLHTTP) 或 Set objXML = CreateObject(“Microsoft.XMLHTTP”) ' Or, for version 3.0 of XMLHTTP, use: ' Set xml = Server.CreateObject(MSXML2.ServerXMLHTTP) 对象创...
标签: Web开发
    ajax技术的实现主要依赖于xmlhttprequest,但我们在调用其来进行异步数据的传输时,由于xmlhttp是个短线过程(处理事件完成后就销毁)如果不对该对象进行包装处理的话,就不得不在需要调用的地方重新构建xmlhttprequest,每次调用都要写一大段的代码,实在不是个好办法。好在现在很多开源的ajax框架都提供了对xmlhttp封...
标签: 电脑入门
建立一个别人既无法进入又无法删除的文件夹。相信大家都遇到过自己的一些隐私文件不愿意让别人看到的情况吧,怎么解决呢?隐藏起来?换个名字?或者加密?这些办法都可以办到,其实还有一种方法,就是建立一个别人既不能进入又不能删除的文件夹,把自己的隐私文件放进去,别人就看不到啦,下面讲讲如何实现,很简单的。 第一步:在运行中输入cmd,...

经验教程

353

收藏

63
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部