Jquery.可以使JQuery UI可拖动、可放置、可排序一起工作吗?
在我的页面中,我有一些动态创建的可拖动的便笺贴纸。然后我有一个可以同时排序(启用排序)的滴管。我将便签贴纸拖放到滴管内,然后将贴纸在滴管内上下排序(通过拖动)!
我想我可以使用 Jquery UI 来实现。但总是会犯错误!
In my page I have some dynamic created note sticker which draggable. And then I have a dropper which that sortable(enable sort) at the same time. I drag and drop the note sticker inside the dropper and sort(via drag) the sticker up and down inside the dropper!
I think I can make it using the Jquery UI. But always make mistake!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我就是这样做的。
使所有要连接和排序的元素可排序,然后使用带参数的连接使所有具有“.connectedSortable”类的元素可拖/放。
$("#list1, #list2, #list3").sortable({
connectWith: '.connectedSortable'
等......
需要源代码来给你一个正确的响应,但这应该让你或任何其他有同样问题的人开始。
从一些产品代码中摘取的完整(ish)示例......
This is how I do it.
Make all of the elements you want to connect and sort sortable, then use the connect with param to make all elements with the '.connectedSortable' class drag / droppable.
$("#list1, #list2, #list3").sortable({
connectWith: '.connectedSortable',
etc....
Need source code to give you a proper reponse but this shoudl get you or anyone else with same question started.
Full (ish) example ripped from some prod code...