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
我将它初始化两次,每次都使用不同的句柄参数,但它不起作用 - 只有第一个起作用。
您应该只传递一次“句柄”参数,它可以是选择器或元素(/s)。
因此,要使其与多个句柄一起使用:
$(elem).draggable({ handle: '#handle1, #handle2', });
更多信息/来源:http ://docs.jquery.com/UI/Draggables/draggable
当然。只需选择这些处理程序即可。
例如:
$(element).Draggable({handle:'.handler'});