如何在页面中创建多个简单模态对话框,每个链接一个?

发布于 2024-11-04 10:28:32 字数 140 浏览 0 评论 0原文

我正在尝试创建一个带有缩略图的视频库。我有第一个缩略图在正确的高度与 SimpleModal 一起使用,但所有其他缩略图都保持打开第一个模式框。如何创建单独的模式框,以便单击不同的链接时显示不同的内容?

请帮忙,我觉得这比我正在尝试的简单 10 倍。

I am trying to create a gallery of videos with thumbnails. I have the first thumbnail working with SimpleModal at the correct height, but all of the other thumbnails keep opening the first modal box. How can I create separate modal boxes so different content shows up when different links are clicked?

Please help, I can feel this is 10x simpler than what I am trying.

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

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

发布评论

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

评论(2

千笙结 2024-11-11 10:28:32

你可以这样做:

$('img').click(function()
    {
        // create the div's popup
        $.('<div>')
            .html("whatever html included in the popup")
            .dialog({ 
                height: 200,
                width: 520,
                modal: false
            });
    });

You can do that:

$('img').click(function()
    {
        // create the div's popup
        $.('<div>')
            .html("whatever html included in the popup")
            .dialog({ 
                height: 200,
                width: 520,
                modal: false
            });
    });
无言温柔 2024-11-11 10:28:32

以下SO问题/答案应该为您提供您正在寻找的解决方案,并且它是SimpleModal特定的:

使用简单模态 OSX 样式对话框进行多次调用

The following SO question/answer should provide you with the solution you are looking for, and it is SimpleModal specific:

Multiple calls with Simple Modal OSX Style Dialog

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