2

这是我的脚本:

<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'

有人看到这有什么明显的问题吗?

4

2 回答 2

7

使用toFixed这种方式 - (你得到那个错误,因为你试图在 jquery 对象上使用那个方法

jQuery('#txtTotal').val(labourCost.toFixed(2));
于 2013-05-28T10:35:31.307 回答
3

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

jQuery('#txtTotal').val(labourCost.toFixed(2));
于 2013-05-28T10:35:11.760 回答