Ver Mensaje Individual
  #4 (permalink)  
Antiguo 26/09/2011, 08:18
Avatar de IsaBelM
IsaBelM
Colaborador
 
Fecha de Ingreso: junio-2008
Mensajes: 5.032
Antigüedad: 16 años, 7 meses
Puntos: 1012
Respuesta: porque no me funciona bien esta funcion js

normal que no funcionara y yo estoy
Cita:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es" lang="es">
<head>
<meta http-equiv="Content-Type" content="application/xhtml; charset=utf-8" />
<title></title>
<script type="text/javascript">
function MostrarNombres(){
var Ajax = objetoAjax();
Ajax.onreadystatechange = function() {



* * if (Ajax.readyState == 4) {
* * * * if(Ajax.status == 200) {
* * *var xml *= Ajax.responseXML;
* * *for (var i = 0; i < xml.getElementsByTagName('nombre').length; i++){

document.getElementById("registro").innerHTML +='<p>'+ xml.getElementsByTagName('nombre')[i].firstChild.nodeValue+'</p>';
* * * * * * * * *
* * * * * * * * *
* * * * * * }
* * * * }
* * }
}
Ajax.open('get', 'archivo.xml', false);
Ajax.send(null);
}
*
* * *

* * * *

*
function objetoAjax(){
* * * * if (window.XMLHttpRequest)
* * * * * * _ajax = new XMLHttpRequest();
* * * * else
* * * * * * if (window.ActiveXObject)
* * * * * * * * _ajax = new ActiveXObject("Microsoft.XMLHTTP");
* * * * * * else
* * * * * * * * _ajax = false;
* * * * return _ajax;
* * }

window.onload = MostrarNombres;
</script>
</head>
<body>
<div id="registro"></div>
</body>
</html>