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.
谁能告诉我如何制作可拖动 div 的父 div,并与它一起拖动?
我有一个 div“窗口”和一个 div“titleBar”。当我拖动标题栏时,我希望窗口随之拖动。JQuery 对话框的行为方式。
谢谢。
找到了答案。
传递给 draggable() 调用的选项“cancel”和“handle”允许您取消对元素的拖动,并限制开始拖动元素。例子:
window.draggable({ 取消:“.titleBarButton,.titleBarButtons”, 句柄:“.titleBar”, })