链式下拉列表选择列表代码 - 连接数据?

时间:2012-06-29 21:02:50

标签: php javascript jquery html ajax

我正在努力调整我在网上找到的链式下拉功能到我的网站。我在网上找到的一些代码如下。一个问题是我无法理解读取var connection = selected.data('connection');的行是连接属性是jquery常见的东西吗?或者它是否设置在代码中的某个位置?如果是这样,代码中的这个位置是什么?

$(function(){

    var questions = $('#questions');

    function refreshSelects(){
        var selects = questions.find('select');

        // Improve the selects with the Chose plugin
        selects.chosen();

        // Listen for changes
        selects.unbind('change').bind('change',function(){

            // The selected option
            var selected = $(this).find('option').eq(this.selectedIndex);
            // Look up the data-connection attribute
            var connection = selected.data('connection');

            // Removing the li containers that follow (if any)
            selected.closest('#questions li').nextAll().remove();

            if(connection){
                fetchSelect(connection);
            }

        });
    }

    var working = false;

    function fetchSelect(val){

        if(working){
            return false;
        }
        working = true;

        $.getJSON('ajax.php',{key:val},function(r){

            var connection, options = '';

            $.each(r.items,function(k,v){
                connection = '';
                if(v){
                    connection = 'data-connection="'+v+'"';
                }

                options+= '<option value="'+k+'" '+connection+'>'+k+'</option>';
            });

            if(r.defaultText){

                // The chose plugin requires that we add an empty option
                // element if we want to display a "Please choose" text

                options = '<option></option>'+options;
            }

            // Building the markup for the select section

            $('<li>\
                <p>'+r.title+'</p>\
                <select data-placeholder="'+r.defaultText+'">\
                    '+ options +'\
                </select>\
                <span class="divider"></span>\
            </li>').appendTo(questions);

            refreshSelects();

            working = false;
        });

    }

    $('#preloader').ajaxStart(function(){
        $(this).show();
    }).ajaxStop(function(){
        $(this).hide();
    });

    // Initially load the product select
    fetchSelect('productSelect');
});

1 个答案:

答案 0 :(得分:0)

查看jQuery.data()函数。此功能允许您存储和检索与指定元素关联的任意数据。

在您的示例中,“选项”具有名称连接的某些属性。查看代码似乎使用属性连接来决定在链中选择下一个链接。