Ver Mensaje Individual
  #2 (permalink)  
Antiguo 27/10/2005, 19:59
Avatar de flaviovich
flaviovich
 
Fecha de Ingreso: agosto-2005
Ubicación: Lima, Peru
Mensajes: 2.951
Antigüedad: 18 años, 9 meses
Puntos: 39
Hola pedrito!
Algunas ideas:
  1. intenta con el atributo innerText
  2. Haz un ciclo que recorra todos los input. Por ejemplo:
    Código HTML:
    inputs=document.getElementsByTagName("input");
    for (i=0; i<inputs.length; i++)
    {
      if (inputs[i].name=="valorC1")
      {
        alert(inputs[i].value);
      }
    }
    
__________________
No repitamos temas, usemos el Motor de busquedas
Plantea bien tu problema: Ayúdanos a ayudarte.