我对简单的if
声明感到沮丧。我收到了错误
TypeError:Undefined不是函数
我做错了什么?
if (typeof lCost !== "undefined")
totalExpenses = +totalExpenses + +lCost.isFixed(2);
答案 0 :(得分:3)
if( typeof lCost !== "undefined" )
{
totalExpenses = +totalExpenses + +lCost.toFixed(2);
}
如果我没错,isFixed不是内置函数