hello world - ajax im explorer - funtz net
-
hallo
ich probiere grad hello world mit ajax aus
http://www.webmasterpro.de/coding/article/ajax-hello-world-in-ajax-inhalt-dynamisch-nachladen.htmlim firefox funzt es im explorer 9 jedoch auch im kompatibilitätsmodus nicht.
woran könnt es liegen?
-
Dieser Thread wurde von Moderator/in rüdiger aus dem Forum Rund um die Programmierung in das Forum Webzeugs verschoben.
Im Zweifelsfall bitte auch folgende Hinweise beachten:
C/C++ Forum :: FAQ - Sonstiges :: Wohin mit meiner Frage?Dieses Posting wurde automatisch erzeugt.
-
Es könnte sein, dass der IE durch die if-Abfrage "durchkommt" und dann eine Exception ausgelöst wird. Probiers mal so:
try { xmlHttpObject = new XMLHttpRequest(); } catch() { try { xmlHttpObject = new ActiveXObject("Msxml2.XMLHTTP"); } catch() { try { xmlHttpObject = new ActiveXObject("Microsoft.XMLHTTP"); } catch() { xmlHttpObject = null; } } }
Oder du hast evtl. im IE JS deaktiviert