jquery 对话框不显示滚动条

发布于 2024-12-11 17:57:42 字数 420 浏览 0 评论 0原文

我对 jquery 对话框插件有这样的定义:

$("#DonateForm").dialog({
    modal: true,
    autoOpen: false,
    minWidth: 600,
    maxWidth: 700,
    minHeight: 250,
    maxHeight: 350,
    resizable: true
});

我有一个复杂的 DIV 表单,例如:

<div id="DonateForm">
  <div id="DonateFormInner">
    .. Complex form ..
  </div>
</div>

但由于某种原因,插件不滚动...知道为什么吗?

I have this definition for the jquery dialog plugin:

$("#DonateForm").dialog({
    modal: true,
    autoOpen: false,
    minWidth: 600,
    maxWidth: 700,
    minHeight: 250,
    maxHeight: 350,
    resizable: true
});

I have a complicated DIV form like:

<div id="DonateForm">
  <div id="DonateFormInner">
    .. Complex form ..
  </div>
</div>

But for some reason, the plugin doesn't scroll... any idea why?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我的奇迹 2024-12-18 17:57:42

您可能必须为容器指定“overflow: auto”:

<div id='DonateForm' style='overflow: auto'>
</div>

根据具体情况,使用内部

可能会更容易。

You probably have to give your container "overflow: auto":

<div id='DonateForm' style='overflow: auto'>
</div>

Depending on the situation, it might be easier to work with the inner <div>.

流心雨 2024-12-18 17:57:42

minXXX、maxXXX 设置定义对话框可以调整大小的最小和最大宽度和高度值。您可以在创建对话框时定义起始宽度和高度,并且在最初渲染对话框时将出现滚动条。

The minXXX, maxXXX settings define the minimum and maximum width and height values that the dialog can be resized to. You can define a starting width and height when creating the dialog and the scroll bar will appear when the dialog is initially rendered.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文