-1

对于可排序元素,我会使用ui.item.index(). 是否有可拖动元素的等价物?

$('.elem').draggable({
  start: function(event, ui){
    //How do I get the "index" of ui.item?
  }
});
4

1 回答 1

1

只需像在其他任何地方一样使用jquery.index() :

$('.elem').draggable({
    start: function () {
        var myIndex = $(this).index();
        $(this).text('I am #' + myIndex);    
    }
});

这是一个小提琴

于 2013-08-10T17:33:54.530 回答