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 的可调整性。当我将它与 Draggable 一起使用时,它会出现问题并且无法按宽度调整它的大小。
如果我单独使用可调整大小,那很好。但我需要让它与可拖动功能一起使用。
请建议。
单击演示的 jsFiddle 链接。
将 a 添加position:relative;到容器中解决了这个问题。
position:relative;
请参阅此工作小提琴示例!
#ParentDIV { position: relative; }
如果您的可拖动元素是绝对定位的并且您的容器是绝对定位的,您可以将拖动的元素设置为固定的宽度和高度。这将创建一个边界框并防止可拖动对象从边缘掉落。
#container { position:absolute; } #draggedObject { position:absolute: width: 100px; height: 50px; }