我在页面上有一个jQueryUI可拖动对象和一个可排序对象。
将元素从可拖动元素拖动到可排序元素会导致拖动的元素跳到页面的左上角。
以下是演示:http://jsfiddle.net/travisrussi/aBhDu/1/
重现:
实际结果:
拖动的元素似乎从相对位置切换到绝对位置。被拖动的'li'从:
切换<li class="ui-state-default ui-draggable" style="position: relative; left: 52px; top: 9px;">Item 3</li>
到此:
<li class="ui-state-default ui-draggable ui-sortable-helper" style="position: absolute; left: 67px; top: 91px; width: 80px; height: 20px;">Item 3</li>
将可拖动项目拖入可排序对象时。
这是来自jQueryUI 1.8.12的相关片段(从第3041行开始):
//The element's absolute position on the page minus margins
this.offset = this.currentItem.offset();
this.offset = {
top: this.offset.top - this.margins.top,
left: this.offset.left - this.margins.left
};
// Only after we got the offset, we can change the helper's position to absolute
// TODO: Still need to figure out a way to make relative sorting possible
this.helper.css("position", "absolute");
this.cssPosition = this.helper.css("position");
$.extend(this.offset, {
click: { //Where the click happened, relative to the element
left: event.pageX - this.offset.left,
top: event.pageY - this.offset.top
},
parent: this._getParentOffset(),
relative: this._getRelativeOffset() //This is a relative to absolute position minus the actual position calculation - only used for relative positioned helper
});
//Generate the original position
this.originalPosition = this._generatePosition(event);
this.originalPageX = event.pageX;
this.originalPageY = event.pageY;
是否有一些我没有使用的配置选项?
CSS有问题吗?
或者这是jqueryUI中的错误吗?
答案 0 :(得分:4)
跳转的主要原因是draggable的'helper'选项未设置为'clone'。如果使用克隆助手,跳跃问题就会消失。
如果您需要使用“原始”辅助设置,您仍会遇到跳跃问题。一种可能的解决方案可能是使用自定义帮助程序选项,如下所示:jQueryUI Draggable Helper Option Help。我们的想法是在创建帮助器时将位置从相对转换为绝对值。
以下是使用“克隆”帮助程序的工作演示的链接:http://jsfiddle.net/travisrussi/aBhDu/
答案 1 :(得分:3)
似乎自定义辅助函数解决了这个问题,如下所示:
$( ".draggable" ).draggable({
connectToSortable: "#sortable",
//helper: "original",
revert: "invalid",
helper: function() {
return $(this);
}
});