我發佈了一張圖片以更好地解釋它。如何將值賦給組合框
所以,想象一下我做一個1搜索,然後我做一個第二,或第三,4th..search,我想回到我的老搜索。
我已經有一些代碼保存舊的搜索(工作正常)。我唯一的問題是如何將值賦給組合框,以便組合框返回到舊狀態。
我怎麼開始這樣做?
編輯:
$('#combos').on('change', '.combo', function() {
var selectedValue = $(this).val();
if (selectedValue !== '' && $(this).find('option').size() > 2) {
var newComboBox = $(this).clone();
var thisComboBoxIndex = parseInt($(this).attr('data-index'), 10);
var newComboBoxIndex = thisComboBoxIndex + 1;
$('.parentCombo' + thisComboBoxIndex).remove();
newComboBox.attr('data-index', newComboBoxIndex);
newComboBox.attr('id', 'combo' + newComboBoxIndex);
newComboBox.addClass('parentCombo' + thisComboBoxIndex);
newComboBox.find('option[value="' + selectedValue + '"]').remove();
$('#combos').append(newComboBox);
}
});
var check_combo_box_values = $('#combos .combo').map(function()
{
return $('option:selected', this).map(function() {
return parseInt(this.value);
}).get();
}).get();
我們不能編寫代碼g我們不知道的源代碼。 – Cerbrus
你在用什麼語言? jquery是否受侵犯? – CR41G14
@ CR41G14:標籤:JavaScript/jQuery。 – Cerbrus