09/02/2007, 11:01
|
| | Fecha de Ingreso: abril-2006 Ubicación: Colombia
Mensajes: 648
Antigüedad: 18 años, 8 meses Puntos: 3 | |
Re: modificar el valor de caja de texto y visualizarlo Buenas
Creo que este tal vez te sirve, este codigo simplemente toma el valor de un text, le agrega el de otro, los concatena y luego sobreescribe el valor, espero te sirva
function b(uno, agregar)
{
var x;
x = uno.value + agregar.value;
uno.value = x;
}
</script>
<form method="post" action="prueba.php">
Cuadro inicial<input type="text" name="uno" value="un"><br>
Escriba el texto que desea agregar al cuadro inicial
y luego de click en el boton copiar
<input type="text" name="agregar">
<input type="button" value="copiar" onclick="b(uno,agregar)">
<input type="submit" name="boton" value="1" id="2" onclick="a(boton)">
<input type="hidden" name="action" value="ya">
</form> |