0
我有一個複選框項目的列表,其中包含「30%」,「20%」等數字值,我希望允許用戶只選中兩個框並對它們進行比較,顯示正面或負面的差異值。我已經開始用下面的代碼:jquery比較列表中的兩個選中的項目
HTML:
<input type="checkbox" class="box" name="metrics1" value="" />
<label for="metrics1">10%</label>
<input type="checkbox" class="box" name="metrics1" value="" />
<label for="metrics1">20%</label>
<input type="checkbox" class="box" name="metrics1" value="" />
<label for="metrics1">40%</label>
<input type="checkbox" class="box" name="metrics1" value="" />
<label for="metrics1">60%</label>
<input type="checkbox" class="box" name="metrics1" value="" />
<label for="metrics1">80%</label>
<div id="resultsection"></div>
JS:
$('input[type="checkbox"]').live('click', function() {
var selected = '';
$('input[type="checkbox"]').each(function(index, value) {
if (this.checked) {
selected += ($('label[for="'+this.name+'"]').html() + ', ');
}
});
if (selected.length > 0) {
selected = "You have selected the following: <br /> " + selected.substring(0,selected.length-2) + '.<br />';
} else {
selected = 'No metrics selected.';
}
$('#resultsection').html(selected);
});
這樣做是顯示#resultsection內選定項的值。我需要的只是獲取兩個值並將它們存儲爲兩個Cookie變量,以便在頁面重新加載後使用它們。然後我們可以添加一個按鈕來比較兩個值之間的關係,如(first-value - second-value =%result)。
我感謝你的幫助。
非常感謝你..我試過你的代碼,它正在工作,但是當我取消選中一個值來選擇另一個值時,其他的盒子被禁用。如果我取消選中第二個複選框,是否可以啓用其他複選框。謝謝 – kumo99
在這裏你去http://jsfiddle.net/bygqK/7/ –
謝謝..現在我想更新兩個值並返回cookie: http://jsfiddle.net/bygqK/9/ this似乎沒有工作..任何幫助? – kumo99