如何在 blockUI 中显示控制器操作视图

发布于 2024-12-13 17:15:38 字数 506 浏览 3 评论 0原文

我正在尝试设置 blockUI 消息来显示控制器操作视图。我已经尝试了一切,但它没有显示任何内容。
我尝试过这样的事情:

$.blockUI({
             message: $('MyController/MyAction'), // I also need to pass some parameters here
        css: {
        top: ($(window).height() - 600) / 2 + 'px',
        left: ($(window).width() - 600) / 2 + 'px',
        width: '600px'
        }
        });

我想要做的是图像显示,就像在 Facebook 上的我的图片库一样。我有一个包含图像/评论/上一页/下一页的视图,但我无法以模式形式显示它。 在此处输入图像描述

I am trying to set blockUI message to display controller action view. I have tried everything but it doesn't display anything.
I have tried something like this:

$.blockUI({
             message: $('MyController/MyAction'), // I also need to pass some parameters here
        css: {
        top: ($(window).height() - 600) / 2 + 'px',
        left: ($(window).width() - 600) / 2 + 'px',
        width: '600px'
        }
        });

What I am trying to make is image display like on facebook for my image gallery. And I have a view that contains Image/Comments/Back/Next but I failed to display it in modal form.
enter image description here

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

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

发布评论

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

评论(1

┾廆蒐ゝ 2024-12-20 17:15:38

这不是调用 ajax 方法的正确方法:=)

$('MyController/MyAction')

jQuery 很神奇,但不是那么神奇!

而是使用:

$.ajax({url:'/controller/action',success: function(d){ $.blockUI(..., message: d,  ...) }})

This is not the correct way to call an ajax method :=)

$('MyController/MyAction')

jQuery is magic, but not that magic !

Instead use:

$.ajax({url:'/controller/action',success: function(d){ $.blockUI(..., message: d,  ...) }})
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文