Cita:
function requerir(){
try{
req=new XMLHttpRequest();
}catch(err1){
try{
req=new ActiveXObject("Microsoft.XMLHTTP");
}catch(err2){
try{
req=new ActiveXObject("Msxml2.XMLHTTP");
}catch(err3){
req= false;
}
}
}
return req;
}
var peticion=requerir();
function llamarAjax(){
var aleatorio=parseInt(Math.random()*999999999);
var campo=document.form1.texto.value;
var url="paginacion.php?var="+campo+"&r="+aleatorio;
peticion.open("GET",url,true);
peticion.onreadystatechange =respuestaAjax;
peticion.setRequestHeader(`Content-Type`,`application/x-www-form-urlencoded`);
peticion.send(null);
}
function respuestaAjax(){
if(peticion.readyState==4){
if(peticion.status==200){
//alert(peticion.responseText);
document.getElementById("bodyPaginacion").innerHTM L=peticion.responseText;
}else{
alert("ha ocurrido un error"+peticion.statusText);
}
}
}
try{
req=new XMLHttpRequest();
}catch(err1){
try{
req=new ActiveXObject("Microsoft.XMLHTTP");
}catch(err2){
try{
req=new ActiveXObject("Msxml2.XMLHTTP");
}catch(err3){
req= false;
}
}
}
return req;
}
var peticion=requerir();
function llamarAjax(){
var aleatorio=parseInt(Math.random()*999999999);
var campo=document.form1.texto.value;
var url="paginacion.php?var="+campo+"&r="+aleatorio;
peticion.open("GET",url,true);
peticion.onreadystatechange =respuestaAjax;
peticion.setRequestHeader(`Content-Type`,`application/x-www-form-urlencoded`);
peticion.send(null);
}
function respuestaAjax(){
if(peticion.readyState==4){
if(peticion.status==200){
//alert(peticion.responseText);
document.getElementById("bodyPaginacion").innerHTM L=peticion.responseText;
}else{
alert("ha ocurrido un error"+peticion.statusText);
}
}
}