Kürzlich habe ich ein Serverprogramm mit Ajax entwickelt und festgestellt, dass der IE-Browser das xmlhttprequest-Objekt nicht unterstützt und das Microsoft.XMLHTTP-Steuerelement nicht gefunden werden konnte.
Es entsteht ein Problem, das wir lösen müssen. Die Lösung lautet wie folgt:
1. Führen Sie regsvr32 msxml3.dll aus.
2. Verwenden Sie vorgefertigte Frameworks, um Ajax auszuführen.
3. Codeoptimierung:
if(window.ActiveXObject)
{
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}
sonst 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);
oder den Browser ermitteln
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) {
// Garantiert ie5 oder ie6
var control = (is_ie5) ? "Microsoft.XMLHTTP" : "Msxml2.XMLHTTP"
;
xmlhttp = new ActiveXObject(control);
xmlhttp.onreadystatechange = handler;
} fangen (ex) {
// TODO: Bessere Hilfemeldung
Alert("Sie müssen Active Scripting und ActiveX-Steuerelemente aktivieren");
}
} else {
// Mozilla
xmlhttp = new XMLHttpRequest();
xmlhttp.onload = handler;
xmlhttp.onerror = handler;
}
return xmlhttp;
}
oder
http://www.cnblogs.com/skylaugh/archive/2006/11/20/566164.html