在弹出窗口中显示页面,如 JQuery Slimbox2 中的图像

发布于 2025-01-02 14:29:08 字数 225 浏览 0 评论 0原文

我想在弹出窗口中开发图像,因此我使用了 JQuery slimbox 库。这工作正常。

现在,我想在弹出窗口中显示页面而不是图像。例如,我将显示 Google 的缩略图,当用户单击它时,然后在弹出窗口中显示 Google 页面而不是大图像。

我怎样才能存档这个?

I want develop to images in popup therefore I used JQuery slimbox library. This is working fine.

Now, I want to show page in popup instead of image. E.g. I will show a thumbnail image of Google and when user clicks on it, then show Google page in popup instead of big image.

How can I archive this?

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

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

发布评论

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

评论(1

挖个坑埋了你 2025-01-09 14:29:08

尝试使用 fancybox,它可以像这样加载原始 html

 $(document).ready(function(){
            $("a").fancybox({
                padding : 1,
                scrolling : 'no',
                autoDimensions : true

            });
        });

但是我用它来加载来自我的域的页面而不是第三方页面。
当然,重定向到 Google 应该在 HTML 中处理。

try to use fancybox, it can load raw html like this

 $(document).ready(function(){
            $("a").fancybox({
                padding : 1,
                scrolling : 'no',
                autoDimensions : true

            });
        });

However i've used it to load pages from my domain and not 3rd parties pages.
Ofcourse redirection to Google should be handled in that HTML.

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