如何使 jQuery resizing() 防止溢出?

发布于 2024-10-22 05:47:04 字数 312 浏览 5 评论 0原文

我有一组可调整大小的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文