使用 SimpleModal 动态模态高度

发布于 2024-12-07 02:04:38 字数 186 浏览 0 评论 0原文

我使用 SimpleModal 来显示一个模态,其高度需要更改,以响应模态中重新填充对话框一部分的下拉列表更改。我遇到的问题是 SimpleModal 在选择更改时不会调整模式的高度。

我看过其他与此相关的帖子,但似乎没有一个有确凿的答案,或者与我的场景没有直接关系(我们支持 IE 7 和 8)。

对此的任何指导将不胜感激!

I'm using SimpleModal to display a modal whose height needs to change in response to a dropdown list change in the modal that repopulates a portion of a dialog. The problem I'm running into is that SimpleModal doesn't resize the height of the modal when the selection changes.

I've seen other posts on SO related to this but none of them seem to have a conclusive answer or are not directly related to my scenario (we're supporting IE 7 and 8).

Any guidance on this would be most appreciated!

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

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

发布评论

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

评论(1

箜明 2024-12-14 02:04:38

这将有助于:

   $.modal(data,
    {
      minWidth: 400,
      onShow: function(dialog){
        //изменение размеров контейнера по размеру контена
        dialog.container.css({"height":"auto","width":"auto"});
      }
    });

This will help:

   $.modal(data,
    {
      minWidth: 400,
      onShow: function(dialog){
        //изменение размеров контейнера по размеру контена
        dialog.container.css({"height":"auto","width":"auto"});
      }
    });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文