最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Internationalization(Number formatting "num.toLocaleString()") not working for chrome - Stack Ove

programmeradmin1浏览0评论

i want do number formatting in Javascript.. and i use the following method num.toLocaleString() which will work for Firefox, IE but doesnt work for Google Chrome.. Wat i need to add for it work in chrome browser.

i want do number formatting in Javascript.. and i use the following method num.toLocaleString() which will work for Firefox, IE but doesnt work for Google Chrome.. Wat i need to add for it work in chrome browser.

Share Improve this question asked Jan 18, 2012 at 7:24 sushsush 4761 gold badge7 silver badges20 bronze badges 2
  • Also see this link. – scessor Commented Jan 18, 2012 at 7:44
  • you should close this... – jordancpaul Commented Mar 16, 2012 at 22:27
Add a ment  | 

4 Answers 4

Reset to default 5

The toLocaleString() method is by definition implementation-dependent: it uses the implementation locale, such as browser locale. So if I were looking at your page that uses the method, I would see numbers formatted according to Finnish or English locale, depending on which browser I’m using.

What you want is localization by the locale of the page, and for this you need something else. In simple cases you might code it yourself, but number formatting is in general plicated, making it reasonable to use a library, such as Globalize. Check out the pact source of a simple demo. In Globalize, you use standard language codes when specifying the locale.

Internationalization is always challenging and unfortunately there doesn't seem to be a consistent/pervasive solution to it. Your best bet is to use a 3rd party library to take care of things for you. We rely heavily on googles closure library, which has some pretty powerful i18n (internationalization) tools. Take a look at http://www.daveoncode./2009/11/26/goog-i18n-numberformat-formatting-number-locale-string/ for an example of how to use it. In the end, it bees as easy as:

// define italian number format symbols 
goog.i18n.NumberFormatSymbols = goog.i18n.NumberFormatSymbols_it_IT; 

// create new decimal formatter (PERCENT, CURRENCY, SCIENTIFIC are options)
formatter = new goog.i18n.NumberFormat(goog.i18n.NumberFormat.Format.DECIMAL);

// view formatted and localized string
alert(formatter.format(15650.579));

If you are new to closure, don't worry. It's not hard to get set up and has a multitude of excellent helper classes that you may find useful. http://code.google./closure/library/docs/gettingstarted.html

The JavaScript internationalization support is quite poor (as you have discovered). You might take a look at https://github./jquery/globalize It handles number formatting, and also dates, times, currencies.

A bit of voodoo can implement your own number formatting. You could build this into String.prototype, but I didnt want that, since its localized.

function reverse(str) {
    return str.split('').reverse().join(''); 
}

function num2str(num) {
    var str = num+"";
    // european
    // return reverse(reverse(str.replace('.',',')).replace(/\d{3}/g,'$&.').replace(/\.$/,''));
    // american
    return reverse(reverse(str).replace(/\d{3}/g,'$&,').replace(/\,$/,''));
}

and then its

> console.log(25000.45)
> 25,000.45

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论