03/05/2005, 15:27
|
| | | Fecha de Ingreso: julio-2003
Mensajes: 1.773
Antigüedad: 21 años, 4 meses Puntos: 21 | |
me sale un error <html>
<head>
<title>Documento sin título</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="javascript">
function actualizar()
{
var miArray=new array()
miArray[0]="orden1"
miArray[1]="orden2"
var texto = document.getElementById('eltexto');
if(document.getElementById('opcion1').selected) texto.value = miArray[0];
if(document.getElementById('opcion2').selected) texto.value = miArray[1];
}
</Script>
</head>
<body>
<form>
<select onChange="actualizar()">
<option id="opcion1">opcion1</option>
<option id="opcion2">opcion2</option>
</select>
<br>
<textarea id="eltexto">fsdfdsf</textarea>
</form>
</body>
</html>
__________________ gerardo |