Ver Mensaje Individual
  #1 (permalink)  
Antiguo 04/07/2010, 20:37
Avatar de ronnyra
ronnyra
 
Fecha de Ingreso: diciembre-2009
Mensajes: 173
Antigüedad: 14 años, 11 meses
Puntos: 1
ayuda con ajax en ie

hola amigos tengo un archivo ajax en donde en mozilla y googlechrome me funciona bien pero en internet explorer no c que pasa.

les agradesco su ayuda, aqui les dejo el archivo el depurador de ie me muestra error en esta parte
Código Javascript:
Ver original
  1. res.innerHTML = ajax.responseText

Código Javascript:
Ver original
  1. function nuevoAjax()
  2. {
  3.     /* Crea el objeto AJAX. Esta funcion es generica para cualquier utilidad de este tipo, por
  4.     lo que se puede copiar tal como esta aqui */
  5.     var xmlhttp=false;
  6.     try
  7.     {
  8.         // Creacion del objeto AJAX para navegadores no IE
  9.         xmlhttp=new ActiveXObject("Msxml2.XMLHTTP");
  10.     }
  11.     catch(e)
  12.     {
  13.         try
  14.         {
  15.             // Creacion del objet AJAX para IE
  16.             xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  17.         }
  18.         catch(E)
  19.         {
  20.             if (!xmlhttp && typeof XMLHttpRequest!='undefined') xmlhttp=new XMLHttpRequest();
  21.         }
  22.     }
  23.     return xmlhttp;
  24. }
  25.  
  26.  
  27.  
  28. function buscarDato(){
  29.    
  30.     bus = document.getElementById('dato').value;   
  31.     res = document.getElementById('resultado');
  32.     ajax=nuevoAjax();
  33.     ajax.open("POST", "bus_inscrip.php",true);
  34.     ajax.onreadystatechange=function() {
  35.         if (ajax.readyState==4) {
  36.             res.innerHTML = ajax.responseText
  37.             }
  38.     }
  39.      ajax.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  40.     ajax.send("busqueda="+bus)
  41.  
  42. }