开发者

jQuery: Replace $ (currency symbol) to another currency symbol

Im looking for function that will allow me to replace all dollar symbols within a div to "CHF" (another currency). The reason is that the currency symbol is hardcoded and it should be replaced.

Is there a simple way of doing this?

Many than开发者_运维问答ks in advance.


jQuery('div').each(function(i){ jQuery(this).text(jQuery(this).text().replace('$','CHF')) })
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜