Código HTML:
y esta es mi funcion javascript: Ver original
<table width="1043" border="1" align="center"> <tr> <td width="105"><div align="center"><span class="Estilo2">CANTIDAD</span></div></td> <td width="401"><div align="center"><span class="Estilo2">DESCRIPCION</span></div></td> <td width="253"><div align="center"><span class="Estilo2">PRECIO UNITARIO </span></div></td> <td width="256"><div align="center"><span class="Estilo2">IMPORTE</span></div></td> </tr> <tr> <td><input name="cant1" type="text" id="cant1" onchange="calcimporte();"/></td> <td><input name="desc1" type="text" id="desc1" size="100" maxlength="100" /></td> <td><input name="precio_uni1" type="text" id="precio_uni1" onchange="calcimporte();"/></td> <td><input name="importe1" type="text" id="importe1" value="0" /></td> </tr> <tr> <td><input name="cant2" type="text" id="cant2" /></td> <td><input name="desc2" type="text" id="desc2" size="100" maxlength="100" /></td> <td><input name="precio_uni2" type="text" id="precio_uni2" /></td> <td><input name="importe2" type="text" id="importe2" value="0" /></td> </tr> </table>
Código HTML:
si se dan cuenta multiplica cant1 y precio_uni1. lo he puesto con el metodo onchange para cada vez que cambie el valor se ejecute la funcion, el problema es q quiero que la funcion pueda tomar el id de cant1,cant2,cant3..etc. pero no tengo la menor idea de como hacer, porfa ayudenme, no se que hacer. espero me puedan ayudar mis amores Ver original