Ver Mensaje Individual
  #11 (permalink)  
Antiguo 17/02/2011, 13:36
enrique4480
 
Fecha de Ingreso: diciembre-2010
Ubicación: valencia
Mensajes: 203
Antigüedad: 13 años, 11 meses
Puntos: 11
Respuesta: Modificar una variable global en una función

no te iria mejor algo asi:
Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  4. <title>Ejemplo</title>
  5.  
  6. <script type="text/javascript" language="javascript">
  7. function tal(){    
  8.       document.getElementById("uno").innerHTML = "nueva";    
  9. }
  10.  
  11. </head>
  12.  
  13.  
  14. <input type="button" value="Continuar" onclick="tal();"/>
  15. <span id="uno">original</span>
  16. </body>
  17. </html>