2

我会发布一张图片来更好地解释它。

在此处输入图像描述

因此,假设我进行了第一次搜索,然后进行了第二次或第三次、第四次搜索,我想回到我的旧搜索。

我已经有一些代码可以保存旧搜索(工作正常)。我唯一的问题是如何将值分配给组合框以使组合框返回到旧状态。

我怎么能开始这样做?

编辑:

$('#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();
4

1 回答 1

0

我做了一个小提琴如何向组合框添加选项

http://jsfiddle.net/hRQqp/2/

既然您说保存旧搜索没有问题,您应该能够将这些部分放在一起

var dropdown = document.getElementById('dropdown');
var list = [
    "first",
    "second",
    "third"
];

// remove old options
while (dropdown.length> 0) {
    dropdown.remove(0);
} 

// add new ones
for (var i=0;i<list.length; i++) {
    var option = document.createElement("option");
    option.textContent = list[i];
    option.value = i;
    dropdown.appendChild(option);
}​
于 2012-12-04T11:00:09.287 回答