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