拖放时获取元素在列表中的位置(ui.sortable)

Getting the position of the element in a list when it#39;s drag/dropped (ui.sortable)(拖放时获取元素在列表中的位置(ui.sortable))
本文介绍了拖放时获取元素在列表中的位置(ui.sortable)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我有一个这样的可排序列表:http://jqueryui.com/demos/sortable

当它被移动时,是否可以获得列表中元素的开始和结束位置?我说的是他们的职位编号,在列表中.

例如,如果我将元素 2 移动到列表中的位置 5,我想将这两个数字分配给变量.

我是 jQuery 新手 - 任何帮助将不胜感激.

解决方案

  • 演示: http://so.lucafilosofi.com/getting-the-position-of-the-element-in-a-list-when-its-drag-dropped-ui-sortable/

解决方案:

$(function() {$('ul#sortable').sortable({开始:函数(事件,用户界面){var start_pos = ui.item.index();ui.item.data('start_pos', start_pos);},更新:函数(事件,用户界面){var start_pos = ui.item.data('start_pos');var end_pos = ui.item.index();警报(start_pos + ' - ' + end_pos);}});});

<块引用>

  • 注意:已更新以使用 jQuery data() 在 Alconja
  • 建议下的方法

I have a sortable list like this one: http://jqueryui.com/demos/sortable

Is it possible to get the start and end position of the element in the list, when it has been moved? I'm talking about their position number, in the list.

For example, if I move element 2 to position 5 in the list, I'd like to assign those two numbers to variables.

I'm new to jQuery - any help would be much appreciated.

解决方案

  • demo: http://so.lucafilosofi.com/getting-the-position-of-the-element-in-a-list-when-its-drag-dropped-ui-sortable/

SOLUTION:

$(function() {
    $('ul#sortable').sortable({
        start: function(event, ui) {
            var start_pos = ui.item.index();
            ui.item.data('start_pos', start_pos);
        },
        update: function(event, ui) {
            var start_pos = ui.item.data('start_pos');
            var end_pos = ui.item.index();
            alert(start_pos + ' - ' + end_pos);
        }
    });
});

  • NOTE: Updated to make use of jQuery data() method under advice of Alconja

这篇关于拖放时获取元素在列表中的位置(ui.sortable)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Drag amp; Drop with Protractor by Repeater(拖动amp;通过中继器使用量角器掉落)
Detecting HTML5 Drag And Drop support in javascript(在 javascript 中检测 HTML5 拖放支持)
HTML5 drop event doesn#39;t work unless dragover is handled(除非处理了拖动,否则 HTML5 放置事件不起作用)
How to use jQuery#39;s drop event to upload files dragged from the desktop?(如何使用 jQuery 的 drop 事件上传从桌面拖动的文件?)
Drop image into contenteditable in Chrome to the cursor(将图像拖放到 Chrome 中的 contenteditable 到光标处)
HTML5: dragover(), drop(): how get current x,y coordinates?(HTML5: dragover(), drop(): 如何获取当前 x,y 坐标?)