Ver Mensaje Individual
  #1 (permalink)  
Antiguo 20/07/2015, 12:57
mariomb19
 
Fecha de Ingreso: mayo-2012
Ubicación: Caracas
Mensajes: 53
Antigüedad: 12 años, 6 meses
Puntos: 1
Pregunta Cambiar un input mediane otro input, que se repite

Buenas tardes,

Tengo una duda no tengo mucho conocimiento de javascript y lo que quiero hacer seguro me pueden ayudar.

Cambiar solo visual la cantidad de un input mediante un input, funciona bien pero solo agarra el primero, quisiera que de alguna forma no importa la cantidad de los input siempre se multiplique en todas.

De ante mano muchas gracias

Código HTML:
<html>
    <head>
        <title>TODO supply a title</title>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
    </head>
<script language="javascript">
function fAgrega()
{
document.getElementById("Text2").value = document.getElementById("Text1").value*6;
}
</script>

<body>

<input id="Text1" type="text" onkeyup="fAgrega();" />
<input id="Text1" type="text" onkeyup="fAgrega();" />
<input id="Text1" type="text" onkeyup="fAgrega();" />
<input id="Text1" type="text" onkeyup="fAgrega();" />
<input id="Text1" type="text" onkeyup="fAgrega();" />
<br />
<br />
<input id="Text2" type="text" disabled />
<input id="Text2" type="text" disabled />
<input id="Text2" type="text" disabled />
<input id="Text2" type="text" disabled />
<input id="Text2" type="text" disabled />
    
</body>
</html>