0

我在受容器限制的页面元素上使用 Jquery Drag Drop UI 脚本,我只是想知道是否有一种方法可以始终将拖动的 div 放在其他子可拖动元素的顶部。

Javascript函数:

function dragIT(parent){
$("#"+parent).draggable({ containment: "#dashboard", scroll: false });
}

该函数由 child/div - onmousedown / ondrag 调用。但是,拖动的元素有时会隐藏在其他 div 后面,这是我不想要的。

4

1 回答 1

2

http://jqueryui.com/demos/draggable/#visual-feedback有一个例子

function dragIT(parent){
$("#"+parent).draggable({ containment: "#dashboard", scroll: false, stack:"#"+parent+" div" });
}
于 2012-04-06T00:34:19.580 回答