JQuery ToFixed无法正常工作

时间:2013-05-28 10:32:33

标签: jquery tofixed

这是我的剧本:

<script>
jQuery(document).ready(function () {
    jQuery('#btnCalculate').click(function () {
        var salaries = parseInt(jQuery('#txtEmployeeSalaries').val(), 10);
        var nationalInsurance = parseInt(jQuery('#txtENIC').val(), 10);
        var pensionCont = parseInt(jQuery('#txtEPC').val(), 10);
        var expenses = parseInt(jQuery('#txtAnyExpenses').val(), 10);
        var income = parseInt(jQuery('#txtIncome').val(), 10);

        var labourCost = (((salaries + nationalInsurance + pensionCont + expenses) / (income)) * 100);
        alert(labourCost);
        jQuery('#txtTotal').val(labourCost).toFixed(2);
    });
});
</script>

但是,在Chrome控制台中,它指出:

Uncaught TypeError: Object [object Object] has no method 'toFixed'

任何人都认为这有什么明显的错误吗?

2 个答案:

答案 0 :(得分:7)

以这种方式使用toFixed - (您正在尝试在jquery对象上使用该方法时出现错误bcoz

jQuery('#txtTotal').val(labourCost.toFixed(2));

答案 1 :(得分:3)

你将toFixed()放在错误的地方。 (toFixed()适用于数字,但您已将其应用于jQuery对象而不是labourCost中的数字。)使用:

jQuery('#txtTotal').val(labourCost.toFixed(2));