将元素拖动到可排序后切换停止工作
我正在编写一个网络应用程序,需要拖放功能。
可拖动对象相当大,但它有一个最小化按钮。但是,当我将对象拖动到可排序元素后,最小化按钮停止工作。
这是代码示例: http://jsfiddle.net/Alvyxaz/u7SdU/
在拖动之前尝试单击 + 号对象可排序,以及之后。
有什么建议吗?
谢谢你!
I'm writing a web application, that requires a drag and drop functionality.
The draggable object is pretty big, but it has a minimization button. However, after I drag the object to a sortable element, the minimization button stops working.
Here's the code sample:
http://jsfiddle.net/Alvyxaz/u7SdU/
Try clicking on the + sign before you drag the object to sortable, and after.
Any tips?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通过使用
.live
与点击事件和toggle()
而不是显示/隐藏来使其工作。http://jsfiddle.net/u7SdU/8/
I got it to work by using
.live
with a click event andtoggle()
instead of show/hide.http://jsfiddle.net/u7SdU/8/