久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

<tfoot id='AzZOk'></tfoot>

  • <small id='AzZOk'></small><noframes id='AzZOk'>

  • <i id='AzZOk'><tr id='AzZOk'><dt id='AzZOk'><q id='AzZOk'><span id='AzZOk'><b id='AzZOk'><form id='AzZOk'><ins id='AzZOk'></ins><ul id='AzZOk'></ul><sub id='AzZOk'></sub></form><legend id='AzZOk'></legend><bdo id='AzZOk'><pre id='AzZOk'><center id='AzZOk'></center></pre></bdo></b><th id='AzZOk'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='AzZOk'><tfoot id='AzZOk'></tfoot><dl id='AzZOk'><fieldset id='AzZOk'></fieldset></dl></div>

      <bdo id='AzZOk'></bdo><ul id='AzZOk'></ul>

    1. <legend id='AzZOk'><style id='AzZOk'><dir id='AzZOk'><q id='AzZOk'></q></dir></style></legend>

        Number().toLocaleString() 在不同的瀏覽器中有不同的格

        Number().toLocaleString() has different format in different browsers(Number().toLocaleString() 在不同的瀏覽器中有不同的格式)

        <i id='5mp7y'><tr id='5mp7y'><dt id='5mp7y'><q id='5mp7y'><span id='5mp7y'><b id='5mp7y'><form id='5mp7y'><ins id='5mp7y'></ins><ul id='5mp7y'></ul><sub id='5mp7y'></sub></form><legend id='5mp7y'></legend><bdo id='5mp7y'><pre id='5mp7y'><center id='5mp7y'></center></pre></bdo></b><th id='5mp7y'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='5mp7y'><tfoot id='5mp7y'></tfoot><dl id='5mp7y'><fieldset id='5mp7y'></fieldset></dl></div>
      1. <small id='5mp7y'></small><noframes id='5mp7y'>

        • <legend id='5mp7y'><style id='5mp7y'><dir id='5mp7y'><q id='5mp7y'></q></dir></style></legend>
              <tbody id='5mp7y'></tbody>

                  <bdo id='5mp7y'></bdo><ul id='5mp7y'></ul>
                  <tfoot id='5mp7y'></tfoot>

                • 本文介紹了Number().toLocaleString() 在不同的瀏覽器中有不同的格式的處理方法,對大家解決問題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!

                  問題描述

                  限時(shí)送ChatGPT賬號(hào)..

                  我將浮點(diǎn)數(shù)格式化為語言環(huán)境字符串(歐元),每個(gè)瀏覽器中的結(jié)果都大不相同.沒有自己的功能可以修復(fù)嗎?

                  I format a float to a locale string (Euro) and there are very different results in every browser. Is it possible to fix without an own function?

                  var sum=2282.0000;
                  var formated_sum = Number(sum.toFixed(2)).toLocaleString("de-DE", {style: "currency", currency: "EUR"});
                  

                  Firefox 結(jié)果:2.282,00 €

                  Firefox result: 2.282,00 €

                  Chrome 結(jié)果:2.282 €

                  Chrome result: 2.282 €

                  IE 結(jié)果:2.282,00 €

                  IE result: 2.282,00 €

                  Safari 結(jié)果:2282 歐元

                  Safari result: 2282 €

                  Safari 的結(jié)果非常錯(cuò)誤,chrome 的結(jié)果并沒有那么糟糕.任何想法如何在不編寫自己的格式化函數(shù)的情況下解決這個(gè)問題?

                  Safari results are very much wrong, chrome results are not so much bad. Any Idea how to fix that without writing an own function for formatting?

                  這個(gè)問題在這里可能已經(jīng)有了答案:toLocaleString() 在不同瀏覽器中的行為不一致不,我的問題不同,因?yàn)槲艺趯ふ邑泿诺慕鉀Q方案,而不是日期

                  This question may already have an answer here: Inconsistent behavior of toLocaleString() in different browser No, my question is different because i am searching for a solution for Currency, not DATE

                  推薦答案

                  ECMA 262 指定函數(shù)依賴于實(shí)現(xiàn)并且不帶參數(shù).

                  ECMA 262 specifies that the function is implementation dependent and takes no arguments.

                  產(chǎn)生一個(gè)字符串值,表示此數(shù)字值格式化根據(jù)宿主環(huán)境當(dāng)前語言環(huán)境的約定.這個(gè)函數(shù)是依賴于實(shí)現(xiàn)的,它是允許的,但是不鼓勵(lì),因?yàn)樗祷嘏c toString 相同的東西.

                  Produces a String value that represents this Number value formatted according to the conventions of the host environment’s current locale. This function is implementation-dependent, and it is permissible, but not encouraged, for it to return the same thing as toString.

                  注意此函數(shù)的第一個(gè)參數(shù)可能用于本標(biāo)準(zhǔn)的未來版本;建議實(shí)現(xiàn)不會(huì)將此參數(shù)位置用于其他任何事情.

                  NOTE The first parameter to this function is likely to be used in a future version of this standard; it is recommended that implementations do not use this parameter position for anything else.

                  它也在 ECMA 國際化 API 規(guī)范中(其中Number.prototype.toLocaleString 取代 ECMA 262 但接受 2 個(gè)參數(shù))

                  It is also in ECMA internationalization API specification (which for Number.prototype.toLocaleString supersedes ECMA 262 but accepts 2 arguments)

                  此定義取代 ES5 15.7.4.3 中提供的定義.

                  This definition supersedes the definition provided in ES5, 15.7.4.3.

                  當(dāng)使用可選參數(shù)調(diào)用 toLocaleString 方法時(shí)語言環(huán)境和選項(xiàng),采取以下步驟:

                  When the toLocaleString method is called with optional arguments locales and options, the following steps are taken:

                  讓 x 是這個(gè) Number 值(在 ES5, 15.7.4 中定義).如果語言環(huán)境是未提供,則讓語言環(huán)境未定義.如果選項(xiàng)不是提供,然后讓選項(xiàng)未定義.讓 numberFormat 為創(chuàng)建一個(gè)新對象的結(jié)果,就像通過表達(dá)式 newIntl.NumberFormat(locales, options) 其中 Intl.NumberFormat 是11.1.3 中定義的標(biāo)準(zhǔn)內(nèi)置構(gòu)造函數(shù).返回結(jié)果調(diào)用 FormatNumber 抽象操作(在 11.3.2 中定義)參數(shù) numberFormat 和 x.長度屬性的值toLocaleString 方法為 0.

                  Let x be this Number value (as defined in ES5, 15.7.4). If locales is not provided, then let locales be undefined. If options is not provided, then let options be undefined. Let numberFormat be the result of creating a new object as if by the expression new Intl.NumberFormat(locales, options) where Intl.NumberFormat is the standard built-in constructor defined in 11.1.3. Return the result of calling the FormatNumber abstract operation (defined in 11.3.2) with arguments numberFormat and x. The value of the length property of the toLocaleString method is 0.

                  此外,mdn指定 Safari 不支持它.

                  Besides, mdn specifies that Safari has no support for it.

                  至于可行的解決方案,請參閱this answer on SO

                  As for a viable solution see this answer on SO

                  這篇關(guān)于Number().toLocaleString() 在不同的瀏覽器中有不同的格式的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網(wǎng)!

                  【網(wǎng)站聲明】本站部分內(nèi)容來源于互聯(lián)網(wǎng),旨在幫助大家更快的解決問題,如果有圖片或者內(nèi)容侵犯了您的權(quán)益,請聯(lián)系我們刪除處理,感謝您的支持!

                  相關(guān)文檔推薦

                  Browserify, Babel 6, Gulp - Unexpected token on spread operator(Browserify,Babel 6,Gulp - 傳播運(yùn)算符上的意外令牌)
                  Is it possible to pass a flag to Gulp to have it run tasks in different ways?(是否可以將標(biāo)志傳遞給 Gulp 以使其以不同的方式運(yùn)行任務(wù)?)
                  Why do we need to install gulp globally and locally?(為什么我們需要在全局和本地安裝 gulp?)
                  How to run Gulp tasks sequentially one after the other(如何一個(gè)接一個(gè)地依次運(yùn)行 Gulp 任務(wù))
                  Visual Studio 2015 crashes when opening Javascript files(打開 Javascript 文件時(shí) Visual Studio 2015 崩潰)
                  Detect FLASH plugin crashes(檢測 FLASH 插件崩潰)
                    <i id='AKyGX'><tr id='AKyGX'><dt id='AKyGX'><q id='AKyGX'><span id='AKyGX'><b id='AKyGX'><form id='AKyGX'><ins id='AKyGX'></ins><ul id='AKyGX'></ul><sub id='AKyGX'></sub></form><legend id='AKyGX'></legend><bdo id='AKyGX'><pre id='AKyGX'><center id='AKyGX'></center></pre></bdo></b><th id='AKyGX'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='AKyGX'><tfoot id='AKyGX'></tfoot><dl id='AKyGX'><fieldset id='AKyGX'></fieldset></dl></div>
                      <tbody id='AKyGX'></tbody>

                      <tfoot id='AKyGX'></tfoot>
                      <legend id='AKyGX'><style id='AKyGX'><dir id='AKyGX'><q id='AKyGX'></q></dir></style></legend>

                        • <bdo id='AKyGX'></bdo><ul id='AKyGX'></ul>

                            <small id='AKyGX'></small><noframes id='AKyGX'>

                            主站蜘蛛池模板: 欧美偷拍视频 | 伊人精品在线 | 亚洲影视一区 | 在线免费观看黄色片 | 国产精品视频99 | 日本美女性生活 | 欧美成人极品 | 国产黄色在线 | 亚洲一区二区久久 | 国产精品99久久久久久久久久久久 | 情侣av | 五月天.com | 国产一区二区不卡视频 | 欧美日韩国产三级 | 国产一区二区视频在线观看 | 超碰人人在线 | 精品久久精品 | 国产成年妇视频 | 欧美久久一区二区 | 亚洲一区成人 | 国产一区二区不卡 | 欧美日韩在线免费观看 | 美女国产精品 | 欧美一级免费 | 亚洲精品色 | 黄色片一级片 | 成人午夜视频在线观看 | www.啪啪| 久久久在线视频 | 国产欧美在线 | 香蕉视频在线看 | 欧美日韩在线看 | 精品亚洲国产成人av制服丝袜 | 99热在线观看 | 黄色片毛片 | 亚洲激情在线播放 | a视频| 国产黄在线观看 | 欧美国产在线观看 | 欧美成人精品一区二区三区在线看 | 黄色小视频在线观看 |