Ver Mensaje Individual
  #1 (permalink)  
Antiguo 28/01/2013, 09:07
Avatar de livication
livication
 
Fecha de Ingreso: noviembre-2009
Mensajes: 78
Antigüedad: 14 años, 5 meses
Puntos: 0
Exclamación Como debe ser la entrega de datos

ESTIMADOS

Podrían darme la solución a como entregar los datos a la pagina de búsqueda ??

Ya que deberia hacerlo en la parte del script funcion o me equivoco...


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="css/buscar-en-tabla.css">
<title>Ingresa Folio</title>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript">
var nextinput = 0;
function AgregarCampos(){
nextinput++;
dato = '<li id="dato'+nextinput+'">Folio:<input type="text" size="20" id="dato'+nextinput+'"&nbsp; name="dato'+nextinput+'"&nbsp; /></li>';
$("#dato").append(dato);
}
</script>
</head>
<body>

<div id="divContenedor">
<div id="divTabla">
<form id="form" name="form" method="post" action="buscador.php">
<a href="#" onclick="AgregarCampos();">Agregar Campos</a>
<div id="dato">
</div>
<input type="submit" name="enviar" value="enviar" />
</form>
</div>
</div>


</body>

</html>