在页面加载时显示 jQModal 窗口
我正在使用 jQModal 插件并尝试在页面加载后立即显示其窗口。我在 $(document).ready(function():
$('#letak').jqm({
overlay: 70,
autofire: true
});
autofire 设置中使用了这段代码,但不幸的是它不起作用。当我单击触发链接时,效果非常好。
// 忘了说页面上有一个隐藏的查看链接(当你按 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试以下操作。我还在 jsFiddle 上整理了一个示例。
Try the following. I also put together an example at jsFiddle.