currencyFormatter.js 货币国际化转换插件,支持一百多种国家的货币符号

currencyFormatter.js 货币国际化转换插件,支持一百多种国家的货币符号

第一步引入bfwone

第二步执行插件

示例如下

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>BFW NEW PAGE</title>
    <script id="bfwone" data="dep=jquery.17&err=0" type="text/javascript" src="//repo.bfw.wiki/bfwrepo/js/bfwone.js"></script>
    <script type="text/javascript">
        bready(function() {
            use(["currencyFormatter"], function() {
                OSREC.CurrencyFormatter.formatEach('.money');

            });
        });
    </script>
</head>
<body>

    <div class='money' data-ccy='EUR'>
        1234564.58
    </div>
    <div class='money' data-ccy='GBP'>
        8798583.85
    </div>
    <div class='money' data-ccy='CNY'>
        0.9754
    </div>
    <div>
        Your INR value is: <span class='money' data-ccy='USD'> 322453.9754 </span>
    </div>

</body>
</html>

官网 https://osrec.github.io/currencyFormatter.js/
立即下载currencyFormatter.js查看所有js插件

网友评论0

程序员在线工具箱