Shadowbox - 打开内联元素

发布于 2024-11-01 16:07:41 字数 235 浏览 1 评论 0原文

我正在使用 Shadowbox 和 jQuery。

我可以在页面加载时打开它。

我想做的是。

打开影子框并显示一个表单,用户可以在其中输入他们的电子邮件地址。

然后我想通过ajax提交所述表单。

我将表单转储到包含 id 为 #dialog 的隐藏 div 中的页面上。

我的问题是。

如何使用内联元素自动打开阴影框?

I am using shadowbox and jQuery.

I have it opening on page load fine.

What I want to do is.

Have the shadowbox open up and show a form where the user can enter their email address.

I then want to submit said form via ajax.

I am dumping the form on the page wrapped in a hidden div with the id of #dialog.

My question is.

How can I get the shadowbox to be opened automatically with an inline element?

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

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

发布评论

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

评论(1

江心雾 2024-11-08 16:07:41

使用 Shadowbox.open 方法。

Shadowbox.open({
    content:    '<div id="welcome-msg">Welcome to my website!</div>',
    player:     "html",
    title:      "Welcome",
    height:     350,
    width:      350
});

您将需要更改一些参数才能使其使用内联内容。

Use the Shadowbox.open method.

Shadowbox.open({
    content:    '<div id="welcome-msg">Welcome to my website!</div>',
    player:     "html",
    title:      "Welcome",
    height:     350,
    width:      350
});

You will need to change some of the params to get it to use the inline content.

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