精美盒子回邮问题

发布于 2024-11-03 20:26:11 字数 91 浏览 0 评论 0原文

我正在使用花式框打开一个新的 aspx 页面。在该页面返回任何帖子之前,这一切都完美。但是,如果此页面中发生任何回发,则此页面将在正常窗口中打开,而不是在花式框中打开。

I,m using fancy box for opening a new aspx page . Before any post back in that page this works perfectly . But if any post backs happens in this page then this page will open in the normal window and not in fancy box.

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

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

发布评论

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

评论(1

陈甜 2024-11-10 20:26:11

我认为您使用正常选项,例如:内联 - 模式窗口

使用 iframe 选项。回发后不会在正常窗口中打开

$("#MyID").fancybox({
        'width'             : '75%',
        'height'            : '75%',
        'autoScale'         : false,
        'transitionIn'      : 'none',
        'transitionOut'     : 'none',
        'type'              : 'iframe'
    });

I think u r using normal option like : Inline - modal window

use iframe option. it will not open in normal window after postback

$("#MyID").fancybox({
        'width'             : '75%',
        'height'            : '75%',
        'autoScale'         : false,
        'transitionIn'      : 'none',
        'transitionOut'     : 'none',
        'type'              : 'iframe'
    });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文