对于可排序元素,我会使用ui.item.index()
。是否存在可拖动元素的等价物?
$('.elem').draggable({
start: function(event, ui){
//How do I get the "index" of ui.item?
}
});
答案 0 :(得分:1)
只需像使用其他任何地方一样使用jquery.index():
$('.elem').draggable({
start: function () {
var myIndex = $(this).index();
$(this).text('I am #' + myIndex);
}
});
这里是fiddle。