jQuery UI 模式对话框:如何在不滚动主窗口的情况下滚动对话框窗口?

发布于 2024-12-21 17:23:14 字数 193 浏览 1 评论 0原文

jQuery UI 模式对话框

如果对话框高度超过主窗口高度,我们可以向下滚动该对话框,但主窗口也会在其后面滚动(在背景上)。

当对话框打开并向下滚动时,是否可以使主窗口固定?

谢谢!

jQuery UI modal dialog.

If dialog height more than main window height we can scroll down through this dialog, but also main window scrolls too behind it (on the background).

Is it possible to make main window fixed while dialog is opened and scrolling down?

Thanks!

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

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

发布评论

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

评论(2

阳光下的泡沫是彩色的 2024-12-28 17:23:14

你可以试试这个:

$('#yourDialog').hover(function(){

  // on hover

  $('body').css({'overflow':'hidden'});

}, function(){

  // off hover

  $('body').css({'overflow':'visible'});

});

You could try this:

$('#yourDialog').hover(function(){

  // on hover

  $('body').css({'overflow':'hidden'});

}, function(){

  // off hover

  $('body').css({'overflow':'visible'});

});
╰つ倒转 2024-12-28 17:23:14

对于寻找此问题答案的其他人,此post 提供以下内容作为答案:

    create: function(event, ui) {
      $("body").css({ overflow: 'hidden' })
     },
     beforeClose: function(event, ui) {
      $("body").css({ overflow: 'inherit' })
     }

此外,请确保在对话框中设置 height 或 maxHeight 选项,否则它将不会显示滚动条。

For anyone else searching for an answer to this question, this post provides the following as an answer:

    create: function(event, ui) {
      $("body").css({ overflow: 'hidden' })
     },
     beforeClose: function(event, ui) {
      $("body").css({ overflow: 'inherit' })
     }

Also, make sure the height or maxHeight option is set in the dialog or else it will not display scrollbars.

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