さて、私は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 ) );
});
}
});
});