AJAX の更新された値から数値を取得し、それをサニタイズして $ を削除し、価格を特定の割合 (disPerc) だけ引き下げてから、顧客に値下げを通知するアラート ウィンドウを作成する jQuery / Java 関数を作成する必要があります。価格。
これが私がこれまでに持っているものです。私は最高のコーダーではないことに気付きました!
<head>
<script type="text/javascript">
function superSalePrice(discPerc) {
var optionPrice = $("#productTotal").val();
var applyDisc = optionPrice * discPerc;
var rPrice = Math.round(applyDisc * 1) / 1;
$("tB").click(function() {
alert("With selected options, final price with discounts is $" + rPrice + "!");
};
)
};
</script>
</head>
//THEN the button
<input type="button" id="tB" value="Test Disc. Calc." onclick="superSalePrice(.85);" />
//THEN the option
<td id="productTotal" class="rowElement3"> $3,450.00</td>
値をサニタイズする方法がわからないため、その部分はまだ含まれていません。
ありがとう!