使用JQuery删除欧元价值和货币格式

时间:2012-05-16 12:02:07

标签: javascript jquery regex

我已经知道如何从标签中获取值,问题是它显示的内容类似于

€123,453.28

我需要删除欧元符号和逗号才能进行计算。

当然不删除小数点

$(document).ready(function () {
            $("#TxtVatExcluded").keypress(function () {
                var invoicedAmmount = $("#MainContent_VehicleInformationControl_LblInvoicePriceValue").text();
                alert(invoicedAmmount);
                if (invoicedAmmount > 0) {
                    var ammountWithoutVat = $("#TxtVatExcluded").val();
                    var result = (ammountWithoutVat / invoicedAmmount) * 100;
                    $("#OutputLabel").html(result + " %");
                }
            });
        });

1 个答案:

答案 0 :(得分:6)

"€123,453.28".replace(/[^\d.]/g,"") // Replace every non digit char or dot char
                                    // With an empty string.

Live DEMO

所以在你的代码中:

var ammountWithoutVat = $("#TxtVatExcluded").val().replace(/[^\d.]/g,"");
var result = (pareseFloat(ammountWithoutVat, 10) / invoicedAmmount) * 100;