JS取得格式化后的价格函数getFormatedPrice()出错

2016-07-07 15:00 来源:www.chinab4c.com 作者:ecshop专家

/* *
* 取得格式化后的价格
* @param : float price
*/
function getFormatedPrice(price)
{
if (currencyFormat.indexOf("%s") > - 1)
{
return currencyFormat.replace('%s', advFormatNumber(price, 2));
}
else if (currencyFormat.indexOf("%d") > - 1)
{
return currencyFormat.replace('%d', advFormatNumber(price, 0));
}
else
{
return price;
}
}
提示:FormatCurrency is not defined
有谁知道是哪出错了吗?在线等啊