0

我目前正在尝试弄清楚如何将此代码转换为适用于列中的表 td 单元格。我在这方面寻求帮助。

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

1 回答 1

0

将代码中的 var 索引行替换为:

var index = $( "#selectable td" ).index( this );

确保表格有一个 id #selectable

于 2012-09-25T18:45:22.703 回答