我有代码,但问题是当我减去总文本框值和高级文本框值等于平衡文本框时,我可以得到结果。但是在将减去的值带入balance textbox
then 函数后不能subtract balance textbox values with discount textbox value
吗?
当我减去余额文本框中显示的总预付款和值时,但问题是我不能用折扣文本框值减去余额文本框值?
我想要这样
总预付款=余额折扣?
<script type="text/javascript">
function getObj(objID){
return document.getElementById(objID);
}
function C(){
getObj("balance").value=parseFloat(getObj("total").value)-
(parseFloat(getObj("advance").value)) ;
return false;
}
function D(){
getObj("balance").value=parseFloat(getObj("balance").value)-
(parseFloat(getObj("discount").value)) ;
return false;
}
</script>
<input type="text" name="total" id="total" />
<input type="text" name="advance" id="advance" />
<input type="text" name="balance" id="balance"
onfocus="return C();return D();" />
<input type="text" name="discount" id="discount" />