我正在尝试根据我们购买商品的价格减去我们收取的价格来找到商品的加价,然后按价格将其除以100倍无论如何我正在尝试将此商品用于多个项目onblur但是对于某些商品而言因为我想出了NaN。我不善于解释这里的事情,这就是我想要做的事情。
<script language="javascript">
function calculatemarkup(){
条目示例
if(isNaN(document.TOTALS.CostFOBfact4.value) || document.TOTALS.CostFOBfact4.value==""){
var text8 = 0;
}else{
var text8 = parseFloat(document.TOTALS.CostFOBfact4.value);
}
计算
document.TOTALS.markup.value = ((((text16-text2)/text16)+((text17-text4)/text17)+ ((text18-text6)/text18)+((text19-text8)/text19)+((text20-text10)/text20)+((text21- text12)/text21)+((text22-text14)/text22)+((text23-text15)/text23))*100).toFixed(1);
}
</script>