18/12/2007, 11:59
|
| | | Fecha de Ingreso: noviembre-2007 Ubicación: Knocking the Death Door..
Mensajes: 368
Antigüedad: 17 años, 1 mes Puntos: 3 | |
Re: Rellenar text box Para copiar el texto de una caja de texto a otra
<html>
<head>
<script type="text/javascript">
<html><head><title>Copia valor de una caja de texto a otra</title></head><body style="font-family: Verdana;">
<p align="center"><b>Copia valor de una caja de texto a otra</b></p><p>
</p><center>
<pre><form name="userform">
Nombre: <input name="name" size="15" value="" onchange="this.form.userid.value=this.value;" type="text"><br>
ID de usuario: <input name="userid" size="15" value="" onchange="this.value=this.form.name.value;" type="text">
<p>
</p></form></pre>
</center>
</body></html> |