Siz kullanıcı türleri olarak bunu yapmak için bir JavaScript deyimini kullanabilirsiniz.
<input name="qty" id ="qty" type="text" onblur="sum()"/>
<input name="price" id ="price" type="text" onblur="sum()"/>
<input name="total" id ="total" type="text"/>
<script type="text/javascript">
function sum(){
//grab the values
qty = document.getElementById('qty').value;
price = document.getElementById('price').value;
document.getElementById('total').value = parseFloat(qty) * parseFloat(price);
}
</script>
Tabii ki kullanıcı tarafından girilen değerleri doğrulamak zorunda.