我的成本计算器需要一些修改:
有没有办法将一个Math.celi添加到罐头中,以便它最接近最接近的整数,提供所需的最小罐头?
什么是最低要求的罐头,成本是否可以通过乘以18.23并给出实际数量来反映出来?
$('input').keyup(function () { // run anytime the value changes
var firstValue = parseFloat($('#width').val()); // get value of field
var secondValue = parseFloat($('#height').val());
var thirdValue = parseFloat($('#per-can').val()); // convert it to a float
var forthValue = parseFloat($('#cost').val());
var fithValue = parseFloat($('#size').val());
var canCount = firstValue * secondValue / thirdValue;
$('#added').html((canCount * forthValue).toFixed(2));
$('#cans').html(canCount.toFixed(2));
if (Math.ceil(canCount) < 2) {
$('#error').html("Need at least 1!");
} else {
$('#error').empty();
}
});