![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
09/02/2007, 10:56
|
| | Fecha de Ingreso: abril-2006 Ubicación: Colombia
Mensajes: 648
Antigüedad: 18 años, 10 meses Puntos: 3 | |
Re: Marcadores Buenas , pues creo que esta es la solución al primer punto:
<script>
function b(uno, agregar)
{
var x;
x = uno.value + agregar.value;
uno.value = x;
}
</script>
<form>
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)">
</form>
El segundo punto no lo entendi muy bien, pero pues ya teniendo resuelto el primero debe ser facil, y solo tendrias que ponerle un color de fuente a un cuadro nuevo y listo, suerte. |