Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一些元素是draggable.
draggable
你可以在这里查看
我想在放入特定容器后冻结这些元素。您可以说我必须将一个元素放入一个块中,而不能将其放入其他块中。
我想你正在寻找这个:
$(ui.draggable).draggable({ disabled: true });
它禁用draggable元素handleDropEvent
handleDropEvent
function handleDropEvent (event, ui) { $(ui.draggable).draggable({ disabled: true }); }
文档可在此处获得
工作演示
我不擅长 javascript,但这个小提琴*http://jsfiddle.net/QqJRs/*可能会有所帮助。
*http://jsfiddle.net/QqJRs/*
我还没有调查过,但是一些事件在它被丢弃后将红色框变为绿色,解决这个问题,我相信你会得到你的答案
祝你好运