如何使 jQuery resizing() 防止溢出?
我有一组可调整大小的 div,可以动态地将内容添加到其中。我的问题是 div 内的内容会溢出到框的尺寸之外。
我不想使用 Overflow: auto,而是始终确保 div 足够大以容纳其内部的内容,这样就无法将其调整得更小。
jQuery 是否提供了一些简单的方法来做到这一点?
当前代码如下
$(this).draggable().resizable(
{
minWidth: 200,
minHeight: 150,
maxWidth: 600,
maxHeight: 450,
});
I have a set of resizable div which can dynamically have content added to them. My problem is that the content inside the div will overflow outside the dimensions of the box.
I do not want to use overflow: auto, but instead always make sure that the div is large enough to fit the content inside of it so that it cannot be resized smaller.
Does jQuery provide some simple way of doing this?
The current code is below
$(this).draggable().resizable(
{
minWidth: 200,
minHeight: 150,
maxWidth: 600,
maxHeight: 450,
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论