questo e' lo script che devi mettere nell'head della tua pagina HTML
codice:
<script type="text/javascript">
function calcola_percentuale(bobj)
{
bobj.form.totale.value=bobj.form.valore.value*(1+bobj.form.percentuale.value/100);
bobj.form.totale2.value=bobj.form.totale.value*(1+bobj.form.percentuale2.value/100);
}
</script>
e questo e' l'HTML
codice:
Valore <input type="text" name="valore" id="valore">
Percentuale 1<input type="text" name="percentuale" id="percentuale">
Totale <input type="text" name="totale" id="totale">
Percentuale 2<input type="text" name="percentuale2" id="percentuale2">
Totale 2<input type="text" name="totale2" id="totale2">
<input type="button" value = "calcola" onclick="calcola_percentuale(this)">
<input type="submit">