28

我需要快速解决方案将货币名称转换为货币符号。

就像我有英镑,我想通过小的 javascript/jquery 代码将其转换为英镑符号。数据是完全动态的。

var currency_symbols = {
    'USD': '$', // US Dollar
    'EUR': '€', // Euro
    'CRC': '₡', // Costa Rican Colón
    'GBP': '£', // British Pound Sterling
    'ILS': '₪', // Israeli New Sheqel
    'INR': '₹', // Indian Rupee
    'JPY': '¥', // Japanese Yen
    'KRW': '₩', // South Korean Won
    'NGN': '₦', // Nigerian Naira
    'PHP': '₱', // Philippine Peso
    'PLN': 'zł', // Polish Zloty
    'PYG': '₲', // Paraguayan Guarani
    'THB': '฿', // Thai Baht
    'UAH': '₴', // Ukrainian Hryvnia
    'VND': '₫', // Vietnamese Dong
};

我不能使用任何插件,例如currenyformat.

寻求快速帮助。

4

2 回答 2

51

做这个:

var currency_symbols = {
    'USD': '$', // US Dollar
    'EUR': '€', // Euro
    'CRC': '₡', // Costa Rican Colón
    'GBP': '£', // British Pound Sterling
    'ILS': '₪', // Israeli New Sheqel
    'INR': '₹', // Indian Rupee
    'JPY': '¥', // Japanese Yen
    'KRW': '₩', // South Korean Won
    'NGN': '₦', // Nigerian Naira
    'PHP': '₱', // Philippine Peso
    'PLN': 'zł', // Polish Zloty
    'PYG': '₲', // Paraguayan Guarani
    'THB': '฿', // Thai Baht
    'UAH': '₴', // Ukrainian Hryvnia
    'VND': '₫', // Vietnamese Dong
};

var currency_name = 'INR';

if(currency_symbols[currency_name]!==undefined) {
    alert(currency_symbols[currency_name]);
}

注意:并非每种货币都有符号。只有上面列出的货币有真实的符号。

于 2013-10-15T05:49:50.963 回答
4

您可以使用 JSON 将代码与符号匹配,这是一个 JSON:https ://gist.github.com/Fluidbyte/2973986

小提琴

var data = {
// the json I gave you above
}
var code = $('input').val();
// the input which contains the code
$.each(data, function(i, v){
    if(i === code){
        $('#result').html(v.symbol);
        // #result is an empty tag which receive the symbol
        return;
    }
});
于 2013-10-15T05:29:23.970 回答