我需要编写一个 jQuery / Java 函数,该函数将从 AJAX 更新值中获取数字,对其进行清理以删除 $,将价格降低一定百分比(discPerc),然后制作一个警报窗口,通知客户减少了价格。
这是我到目前为止所拥有的,我意识到我不是最好的编码员!
<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>
我不知道如何清理该值,因此尚未包含该部分。
谢谢!