Ver Mensaje Individual
  #1 (permalink)  
Antiguo 12/09/2008, 02:14
_ZeNiT_
 
Fecha de Ingreso: septiembre-2008
Mensajes: 2
Antigüedad: 16 años, 2 meses
Puntos: 0
Ayuda urgente...

Buenos dias,

soy novato en esto de AJAX, y estoy intentando tener combos dependientes. Encontré un script para hacer un combo, pero en la web que estoy haciendo tengo dos combos, y no sé como lo debo de hacer. Aquí os dejo el código que tengo.

Gracias por avanzado cracks!

Saludos!

------------------------------------

var Conexion=false;
var Servidor="desplegable.php";
var Servidor2="desplegable2.php";


function Conectar()
{
if(window.XMLHttpRequest)
Conexion=new XMLHttpRequest(); //mozilla
else if(window.ActiveXObject)
Conexion=new ActiveXObject("Microsoft.XMLHTTP"); //microsoft
}


function Contenido(idContenido)
{


if(Conexion.readyState!=4) return;

if(Conexion.status==200)
{

document.getElementById(idContenido).innerHTML=Con exion.responseText;
}else{
document.getElementById(idContenido).innerHTML=Con exion.status+"-"+Conexion.statusText;
}

Conexion=false;
}


function Solicitud(Parametro,idContenido)
{
if(Parametro)
{

if(Conexion) return;

Conectar();

if(Conexion)
{

Conexion.open("GET",Servidor+"?show="+Parametro,tr ue);


Conexion.onreadystatechange=function()
{
Contenido(idContenido);
}

Conexion.send(null);
}else
document.getElementById(idContenido).innerHTML="No disponible";
}else
document.getElementById(idContenido).innerHTML="";

}


window.onload=function()
{
Solicitud("desplegableInicial","desp1");

}