jquery dom 可调整大小的可拖动遏制问题
为什么 jquery resizing() 没有将大小调整为分配给它的包含 id 的完整宽度和高度。您可以在 http://jsfiddle.net/C8YSU/6/ 尝试一下,看看我的意思。尝试调整创建的 div 的大小,它不会调整到父 #container div 上的完整宽度和高度。这似乎是由 draggable()
函数引起的。
Why is jquery resizable() not resizing to full width and height of the containment id assigned to it. You can try it at http://jsfiddle.net/C8YSU/6/ and see what i mean. Try to resize the created div, it will not resize to full width and height on the parent #container div. This seems to be caused by the draggable()
function.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
向 #container div 添加相对位置解决了该问题。
Adding a relative position to the #container div fixed the problem.
更新
Update
给它添加draggable是一个问题。
试试这个例子。删除了可拖动的部分,但添加了手柄。
http://jsfiddle.net/C8YSU/7/
It is a problem with adding draggable to it.
Try this example. Removed draggable, but added handles.
http://jsfiddle.net/C8YSU/7/