Ver Mensaje Individual
  #5 (permalink)  
Antiguo 22/01/2008, 04:11
aruizroldan
 
Fecha de Ingreso: octubre-2003
Mensajes: 280
Antigüedad: 21 años, 2 meses
Puntos: 1
Re: obtener valor de input a partir de otros dos

Te mando lo que he intentado, pero me da fallo.

<html><head>
<script type="text/javascript">
function poner(frm) {
var posicion = frm.apellidos.value.indexOf(" "));
var auxiliar = frm.nombre.value.substr(0,1) + frm.apellidos.value.substr(0,posicion);
frm.usuario.value = auxiliar.toLowerCase();

}
</script>
</head><body>
<form method="post" action="envia_registro.php" NAME="Formulario" enctype="multipart/form-data" style="margin:0px;">
<input type="text" name="nombre" id="nombre" onkeyup="poner(this.form)">
<input type="text" name="apellidos" id="apellidos" onkeyup="poner(this.form)">
<input type="text" name="usuario" id="usuario" disabled>
</form>
</body>
</html>