10/11/2008, 18:50
|
| | Fecha de Ingreso: septiembre-2008
Mensajes: 242
Antigüedad: 16 años, 4 meses Puntos: 3 | |
Respuesta: textarea, con select y javascript sorry por las molestias pero asi estaria bien?
<html>
<head>
<script language="JavaScript">
window.onload = function()
{
document.getElementById('chao').onchange = function()
{
document.getElementById('hola').innerHTML = document.getElementById('chao').value;
}
}
</script>
</head>
<body>
<form>
<select id="chao">
<option value=1>1</option>
<option value=2>2</option>
</select>
<textarea id="hola"></textarea>
</form>
</body>
</html> |