在页面加载时显示 jQModal 窗口

发布于 2024-09-02 15:07:05 字数 382 浏览 5 评论 0原文

我正在使用 jQModal 插件并尝试在页面加载后立即显示其窗口。我在 $(document).ready(function():

$('#letak').jqm({
    overlay: 70,
    autofire: true 
});

autofire 设置中使用了这段代码,但不幸的是它不起作用。当我单击触发链接时,效果非常好。

示例: http://bz.machi.cz/

// 忘了说页面上有一个隐藏的查看链接(当你按 Ctrl +你可以看到)

我做错了什么吗?非常感谢,Jakub。

I'm playing with jQModal plugin and trying to display its window right after the page is loaded. I used this code in $(document).ready(function():

$('#letak').jqm({
    overlay: 70,
    autofire: true 
});

autofire setting should do the trick but unfortunately it doesn't work. Works perfectly fine when I click at trigger link.

Example: http://bz.machi.cz/

// Forgot to mention that there is a hidden View link on the page (when you press Ctrl + A you can see it).

Am I doing something wrong? Thanks a lot, Jakub

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

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

发布评论

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

评论(1

木森分化 2024-09-09 15:07:05

尝试以下操作。我还在 jsFiddle 上整理了一个示例

$(document).ready(function() {
    $('#letax').jqm().jqmShow({overlay: 70});
});

Try the following. I also put together an example at jsFiddle.

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