23/12/2011, 14:49
|
| | Fecha de Ingreso: octubre-2006
Mensajes: 128
Antigüedad: 18 años, 1 mes Puntos: 0 | |
Respuesta: Ayuda con Window.Onload por favor podrias ayudarme con este es el mismo problema no se como agregar las dos funciones Cita: function get_xmlhttp() {
try {
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
} catch (E) {
xmlhttp = false;
}
}
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
xmlhttp = new XMLHttpRequest();
}
return xmlhttp
}
function probar_XMLHttpRequest(merchId,storeId,termId,currI d) {
xmlhttp=get_xmlhttp()
var monto = document.getElementById("monto").value;
var order = document.getElementById("order").value;
xmlhttp.open("GET", "calculaDigest.php?monto="+monto+"&order="+order+" &merchId="+merchId+"&storeId="+storeId+"&termId="+ termId+"&currId="+currId,false);
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState==4)
var serverResponse = xmlhttp.responseText;
document.getElementById("vdig").innerHTML=serverRe sponse;
document.getElementById("digest").value=serverResp onse;
};
xmlhttp.send(null);
} |