ラベルから値を取得する方法はすでに知っていますが、問題は次のようなものを表示していることです
€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 + " %");
}
});
});