Ver Mensaje Individual
  #2 (permalink)  
Antiguo 20/06/2008, 19:15
GermanBsAs
 
Fecha de Ingreso: septiembre-2004
Mensajes: 252
Antigüedad: 20 años, 3 meses
Puntos: 0
Respuesta: agregar input a un form

Podria ser algo asi
Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

<head>
	<title>sin título</title>
	<meta http-equiv="content-type" content="text/html;charset=utf-8" />
	<meta name="generator" content="Geany 0.14" />
	<script type="text/javascript">
	/*<![CDATA[*/
	var c=0;
	function newInput()
	{
		var inpt = document.createElement('input');
		inpt.type="text";
		inpt.name="input_"+c;
		inpt.id="input_"+c;
		c+=1;
		document.f1.appendChild(inpt);
		document.f1.innerHTML+="<br/>";
	}
	/*]]>*/
	</script>
</head>

<body>
<a href="javascript:newInput()" >crear nuevo</a>
<form action="session.php" method="get"  name="f1">


</form>	
</body>
</html>