使用draggable将jquery中的元素拖动到手风琴菜单之外?
今天我一直在为这些问题而苦苦挣扎。 我在 jquery 手风琴菜单中添加了一个可拖动对象。 问题是它不允许我把它拖到外面。 当我尝试将其拖到外面时,它正在调整手风琴菜单内的 div 大小并显示滚动条。 这里我做了一个问题的演示。 http://jsbin.com/efoje4/4
请帮忙:(
i have been struggling with these problem all today.
i added a draggable object inside a jquery accordion menu.
the problem is it doesnt allow me to drag it outside.
when i try to drag it outside it is resizing the div inside accordion menu and showing scrollbar.
here i made a demo of the problem.
http://jsbin.com/efoje4/4
please help :(
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在您的
draggable
声明中,添加选项appendTo:'body'
工作示例:http://jsbin.com/efoje4/6
参见jQuery-Ui:无法将对象拖动到手风琴之外
in your
draggable
declaration, add the optionappendTo:'body'
working example: http://jsbin.com/efoje4/6
see jQuery-Ui: Cannot drag object outside of an accordion
http://jsbin.com/efoje4/8/
您可以使用绑定的appendTo: 'body'反对页面主体而不是当前容器元素。
http://jsbin.com/efoje4/8/
You can use appendTo: 'body' which binds to object to the body of the page and not the current container element.