money.js - JavaScript的货币转换库

openkk 12年前

money.js 是一个用来实现货币转换的 JS 库,示例代码:

// From any currency, to any currency:  fx.convert(12.99, {from: "GBP", to: "HKD"});    // Chaining sugar:  fx(1000).from("USD").to("GBP");  fx(1000).to("AED");    // With simple settings and defaults, making this possible:  fx.convert(5318008);  fx(5318008).to("AED");    // Can also be used as a nodeJS/npm or requireJS/AMD module  var fx = require("money");  require(["money"], function(fx) { /* ... */ });

项目主页:http://www.open-open.com/lib/view/home/1330245149046