我想總結一些來自多個選擇框的值。問題是這些選項包含文本和數字。我只需要這些數字並將其總結起來。沒有其他辦法可以做到這一點。 所以我試圖從字符串中去掉文本,然後每次更改選擇框時更新金額。現在結果總是錯誤的。總結多個選擇框的值
我的另一個問題是,有時在號碼前有一個減號。有什麼方法可以從總體中提取出來嗎?在小提琴的第三個選擇框中有一個例子。
任何人都可以幫忙嗎?我創建了一個Fiddle here
HTML
<form method="post" id="product_configure_form" action="cart/add/14161745">
<div class="product-info-options tui">
<input type="hidden" value="" id="product_configure_bundle_id" name="bundle_id">
<div class="product-configure">
<div class="product-configure-custom">
<div class="product-configure-custom-option">
<label for="product_configure_custom_604623">Stoffering: <em>*</em>
</label>
<select id="product_configure_custom_604623" name="custom[604623]">
<option selected="selected" disabled="disabled" value="">Maak een keuze...</option>
<option value="5217777">Camira 24/7 *snellever - 2 weken</option>
<option value="5217779">Staccato *snellever - 2 weken (+€27,00)</option>
<option value="5217781">Leer 1 Trento *snellever - 2 weken (+€85,00)</option>
<option value="5217783">Leer 2 Litano (+€172,00)</option>
</select>
<div class="product-configure-clear"></div>
</div>
<div class="product-configure-custom-option">
<label for="product_configure_custom_603895">Armlegger frame kleur: <em>*</em>
</label>
<select id="product_configure_custom_603895" name="custom[603895]">
<option selected="selected" disabled="disabled" value="">Maak een keuze...</option>
<option value="5217785">zwart gecoat</option>
<option value="5217787">aluminium gecoat (+€11,00)</option>
<option value="5217789">aluminium gepolijst (+€11,00)</option>
<option value="5217791">verchroomd (+€53,00)</option>
</select>
<div class="product-configure-clear"></div>
</div>
etc............
JQUERY
function update_amounts() {
var sum = 0.0;
$('#product_configure_form .product-configure-custom-option select').each(function() {
var price = $(this).find('option:selected').text();
var priceClean = price.replace(/[^0-9]/g, '');
priceClean = parseFloat(priceClean) || 0;
sum += priceClean;
});
$('#amount').text('€' + sum.toFixed(2));
}
$("#product_configure_form .product-configure-custom-option select").change(function() {
update_amounts();
});
將數字放在'value'屬性中,並使用它,而不是文本。 – Barmar 2014-11-03 23:01:06
你能否詳細說明爲什麼「沒有其他方法可以做到這一點」?有什麼限制? – Fiddles 2014-11-03 23:40:47