en estea ocasion les tengo una pregunta
existe alguna forma de hacer una sola funcion que sirva tanto para get com para post y no hacer esto pq no me funcion al 100%
Código Javascript:
Saludos Ver original
function EnviaPeticion(destino,archivo,tipo,url){ if(tipo=="POST"){ alert(destino+""+archivo+""+tipo+""+url); if(validar()){ colorFilas(); Ajax.open(tipo,url,true); Ajax.onreadystatechange=function(){ if(Ajax.readyState==4){ document.getElementById(destino).innerHTML="<center><img src='imgSist/ok.png'/></center>"; } else document.getElementById(destino).innerHTML="<center><img src='imgSist/LIcon4.gif'>"; } Ajax.send(obtenerDatos()); } } else{ Ajax.open(tipo,url ,true) Ajax.onreadystatechange=function(){ if(Ajax.readyState==4){ wrtb2(Ajax.responseText,destino,url); } else document.getElementById(destino).innerHTML="<center><img src='imgSist/LIcon4.gif'>"; } Ajax.send(null); }