17/11/2008, 15:57
|
| | Fecha de Ingreso: diciembre-2006
Mensajes: 6
Antigüedad: 17 años, 11 meses Puntos: 0 | |
Mandar parametros Hola a todos! Tengo 3 archivos: ajax.js, luego un html, que llama a una consulta (consulta.php), la cual debe ser actualizada en un div, mi problema es que llamo al archivo de la siguiente manera: onSubmit="MostrarConsulta('consulta.php'); return false" y necesito a la misma mandarle un parametro. Alguien me puede ayudar no tengo idea de como hacerlo. Desde ya muchas gracias y saludos
ajax.js
function objetoAjax(){
var xmlhttp=false;
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 MostrarConsulta(datos){
divResultado = document.getElementById('resultado');
ajax=objetoAjax();
ajax.open("GET", datos);
ajax.onreadystatechange=function() {
if (ajax.readyState==4) {
divResultado.innerHTML = ajax.responseText
}
}
ajax.send(null)
}
<head>
<script language="JavaScript" type="text/javascript" src="ajax.js"></script>
</head>
...
<form name="consulta" action="" onSubmit="MostrarConsulta('consulta.php'); return false"> <label>
<input name="cod" type="text" id="cod" value="<? echo $_REQUEST[cod];?>" />
<input type="submit" value="Actualizar" />
</label>
</form>
<div id="resultado">sdf</div>
consulta.php
<?php
include 'conexion.php';
conectar();echo "numero:";
echo $_REQUEST["cod"];die;
$qr = "SELECT * FROM reparticiosn";
$res = mysql_query($qr);
echo "<p>Nombres - Departamento - Sueldo</p>";
while($row = mysql_fetch_array($res)){
echo "<p>".$row['nombre']." - ".$row['direccion']." - ".$row['telefono']."</p>";
}
?> |