根据以前的下拉列表更新下拉列表

时间:2012-09-27 23:07:59

标签: jquery asp.net asp.net-mvc asp.net-mvc-3

除了我的MVC3项目,我们设计了一个分别包含3个安全问题和答案的页面(下拉列表中大约10个)。可以从下拉列表中选择问题,答案将填入其下方的文本框中。

设计: 让我们说,如果用户选择问题1作为(10个中的1个)问题。第二次下拉应该只显示9个问题(跳过第一个问题)。同样,第三个问题只有8个选项。

以同样的方式,如果用户将索引更改为0(表示选择问题)。他删除的那个问题应该出现在其他下拉列表中。

请帮助设计此页面。我尝试使用JQuery,但没有帮助我。

2 个答案:

答案 0 :(得分:3)

试试此代码

$(function() {
    // Load all the dropdowns
    $('[id^=select]').html($('.template').html());
    // This array Holds the Objects
    var arr = ['select1', 'select2', 'select3'];
    // Declare a array where you store the selections
    var arrSelect = {
        'select1': '0',
        'select2': '0',
        'select3': '0'
    };

    $('select').on('change', function() {
        var currID = $(this).prop('id');
        // Set the Current selection
        arrSelect[currID] = $(this).val();
        // Iterate Thru each dropdown 
        $.each(arr, function(i) {
            var temp = arrSelect[arr[i]];
            // Clone the template
            var $clone = $('.template').clone();
            // Remove Questions from template based on selected
            // values in other select's
            $.each(arrSelect, function(index, value) {
                if (value != 0 && value != temp) {
                    $clone.find('option[value=' + value + ']').remove();
                }
            });
            // If not Current select rewrite its 
            // contents of the select
            if (arr[i] != currID) {
                //console.log('#' + arr[i] + ' :: ' + $clone.html());
                $('#' + arr[i]).html('').html($clone.html());
                $('#' + arr[i]).val(temp);
            }
        });
    });
})​

WORKING DEMO

答案 1 :(得分:2)

我会使用Knockout。基本上创建一个返回可用问题的JavaScript Viewmodel。

我有一个similar requirement,以下工作。

http://jsfiddle.net/mbest/wfW97/

以下是供参考的代码:

function ViewModel() {
    var self = this;
    self.colors = ['red','orange','yellow','green','blue','indigo','violet'];
    self.selections = [];
    ko.utils.arrayForEach(self.colors, function() {
        self.selections.push(ko.observable());
    });
    self.selfAndUnselectedColors = function(index) {
        var selfColor = self.selections[index]();
        return ko.utils.arrayFilter(self.colors, function(color) {
            return color === selfColor || !ko.utils.arrayFirst(self.selections, function(sel) {
                return color === sel();
            });
        });
    }
}

ko.applyBindings(new ViewModel());

和HTML:

<div data-bind="repeat: colors.length">
    <select data-bind="options: selfAndUnselectedColors($index), optionsCaption: 'select a color', value: selections[$index]"></select>
</div>​