有人可以请赐教我为什么我的toFixed()不起作用?
$("#amount").blur(function() {
if ($('#amount').val() % 100 != 0) {
alert("must be a multiple of 100, please try again")
} else {
$('#fee').val(parseFloat($('#amount').val()) * .035).toFixed(2);
}
});
答案 0 :(得分:8)
尝试
$('#fee').val(parseFloat($('#amount').val() * .035).toFixed(2));
重新排列括号