Cita:
Iniciado por Adler Hola
Con esta función puedes llenar los dos div. Supongamos que te trae "coche,camión", haces el split, le pones el subindice y puede colocar cada elemento en un campo distinto
Código javascript
:
Ver originalfunction handleHttpResponse() {
if (http.readyState == 4) {
if (http.status == 200) {
if (http.responseText.indexOf('invalid') == -1) {
// Armamos un array, usando la coma para separar elementos
results = http.responseText.split(",");
document.getElementById("campoMensaje").innerHTML = results[0];
document.getElementById("campoMensaje1").innerHTML = results[1];
enProceso = false;
}
}
}
}
¿Te refieres a eso?
Suerte
si probe con eso pero no me funciona
lo tengo asi
Código ajax:
Ver original<script language="javascript" type="text/javascript">
function handleHttpResponse() {
if (http.readyState == 4) {
if (http.status == 200) {
if (http.responseText.indexOf('invalid') == -1) {
// Armamos un array, usando la coma para separar elementos
results = http.responseText.split(",");
document.getElementById("campoMensaje").innerHTML = results[0];
document.getElementById("campoMensaje1").innerHTML = results[1];
enProceso = false;
}
}
}
}
function AJAXpr_tipo() {
if (!enProceso && http) {
var valor = escape(document.getElementById("pr_tipo").value);
var url = "../ajax/valida_pro.asp?pr_tipo="+ valor;
http.open("GET", url, true);
http.onreadystatechange = handleHttpResponse;
enProceso = true;
http.send(null);
}
}
function AJAXpr_precio() {
if (!enProceso && http) {
var valor = escape(document.getElementById("pr_precioprovee").value);
var url = "../ajax/valida_pro.asp?pr_precio="+ valor;
http.open("GET", url, true);
http.onreadystatechange = handleHttpResponse;
enProceso = true;
http.send(null);
}
}
function getHTTPObject() {
var xmlhttp;
/*@cc_on
@if (@_jscript_version >= 5)
try {
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
} catch (E) { xmlhttp = false; }
}
@else
xmlhttp = false;
@end @*/
if (!xmlhttp && typeof XMLHttpRequest != 'undefined') {
try {
xmlhttp = new XMLHttpRequest();
} catch (e) { xmlhttp = false; }
}
return xmlhttp;
}
var enProceso = false; // lo usamos para ver si hay un proceso activo
var http = getHTTPObject(); // Creamos el objeto XMLHttpRequest
</script>
y el valida pro es
Código asp:
Ver original<%
pr_tipo = int(Request.QueryString("pr_tipo"))
pr_precio = Trim(Request.QueryString("pr_precio"))
If Int(pr_tipo) = 0 and pr_precio = "" Then
response.write "<img src=""../_imag/tinto.jpg"" width=""10"" height=""10"" />"
ElseIf Int(pr_tipo) = 1 and pr_precio = "" Then
response.write "<img src=""../_imag/blanco.jpg"" width=""10"" height=""10"" />"
End If
if pr_precio <> "" Then
sHTML = sHTML & "<table border=""0"" cellpadding=""2"" cellspacing=""0"">"
sHTML = sHTML & " <tr>"
sHTML = sHTML & " <td width=""95""><h3>Precio V.Oferta</h3></td>"
sHTML = sHTML & " <td> </td>"
sHTML = sHTML & " </tr>"
sHTML = sHTML & " <tr>"
sHTML = sHTML & " <td><h3>Precio Mercado</h3></td>"
sHTML = sHTML & " <td> </td>"
sHTML = sHTML & " </tr>"
sHTML = sHTML & "</table>"
response.write(sHTML)
End If
en el div
campoMensaje me funciona bien
pero cuando hago click en el campo de texto en el cual llamo con el evento onclik a la funcion
AJAXpr_precio() me muestra el texto en el div
campoMensaje y no en el div
campoMensaje1