29/05/2008, 08:40
|
| | | Fecha de Ingreso: julio-2003
Mensajes: 1.773
Antigüedad: 21 años, 5 meses Puntos: 21 | |
Respuesta: verficar sesion de php al oprimir un href ok entonces no hay vuelta de hoja la funcion se que daria asi:
asi:
antes:
Código:
function ajaxFunction()
{ var xmlHttp;
try { xmlHttp=new XMLHttpRequest();return xmlHttp; }
catch (e) { try { xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");return xmlHttp; }
catch (e) { try { xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");return xmlHttp; }
catch (e) { alert("Your browser does not support AJAX!");return false; }
}}}
function abc()
{
var ajax = new ajaxFunction();
ajax.onreadystatechange=function()
{
if(ajax.readyState==4)
{
return ajax.responseText;
}
}
ajax.open("GET","sesion.php",true);
ajax.send(null);
}
nuevo
Código:
function ajaxFunction()
{ var xmlHttp;
try { xmlHttp=new XMLHttpRequest();return xmlHttp; }
catch (e) { try { xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");return xmlHttp; }
catch (e) { try { xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");return xmlHttp; }
catch (e) { alert("Your browser does not support AJAX!");return false; }
}}}
//solo esto cambio
function abc()
{
var ajax = new ajaxFunction();
ajax.open("GET","int_verificar.php",false);
ajax.send(null);
return ajax.responseText;
}
gracias zital nuevamente
saludos
__________________ gerardo
Última edición por chalchis; 29/05/2008 a las 09:04 |