jquery 对话框不显示滚动条
我对 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能必须为容器指定“overflow: auto”:
根据具体情况,使用内部
可能会更容易。
You probably have to give your container "overflow: auto":
Depending on the situation, it might be easier to work with the inner
<div>
.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.