如图片公式那样计算
function votecalculator(price, amount,poundage1){
price = parseFloat(price) || 0;
amount = parseFloat(amount) || 0;
poundage1 = parseFloat(poundage1) || 0;
var money2 = 0;
poundage = price*amout*(poundage1/100);
$("#poundage").val(poundage.toFixed(2));
}
$("#price").change(function () {
price = parseFloat($(this).val());
votecalculator(price, amount,poundage1);
});
$("#amount").change(function () {
amount = parseFloat($(this).val());
votecalculator(price, amount,poundage1);
});
$("#poundage1").change(function () {
poundage1 = parseFloat($(this).val());
votecalculator(price, amount,poundage1);
});
var price = parseFloat($("#price").val());
var amount = parseFloat($("#amount").val());
var poundage1 = parseFloat($("#poundage1").val());
votecalculator(price, amount,poundage1);
这是我的js 我只是计算了手续费 但是无法计算 不知道怎么回事 还有就是$(document).ready() 就计算不了 必须删除才能计算 还有就是 我想给他 同时计算 填完数量跟价格 金额和手续费都出现 就是在js里先计算手续费 完了手续费有值了也计算 金额 但是要页面要同时出现结果的 用什么 if(){}吗