Как добавить id элементов li в выбираемые кратные числа пользовательского интерфейса jQuery - PullRequest
0 голосов
/ 03 ноября 2011

Хорошо, поэтому я пытаюсь интегрировать плагин jQuery UI по выбору (сетка), и мне нравится, как он отправляет выбранные индексы обратно. Вот что я хотел бы сделать:

$(function() {
    $( "#selectable" ).selectable({
        stop: function() {
            var result = $( "#select-result" ).empty();
            $( ".ui-selected").each(function() {
                 var index = $( "#selectable li" ).attr('id');
                                   // But I want the ids of all the selected elements,
                                   // but the id of the first is just getting copied on my site!
                result.append( "#" + ( index + 1 ) );
            });
        }
    });
});

1 Ответ

0 голосов
/ 03 ноября 2011

Попробуйте:

$(function() {
    $( "#selectable" ).selectable({
        stop: function() {
            var result = $( "#select-result" ).empty();
            $( ".ui-selected").each(function() {
                 var index = $( this ).attr('id'); 
                result.append( "#" + ( index + 1 ) );
            });
        }
    });
});
...