我想在我的某个页面上动态生成一个fancybox弹出窗口。 我的想法是,我生成一个图像,应用fancybox和它,然后直接显示弹出窗口
目前,我这样做:
// Image generation...
// At the end I get the image then apply the fancbox
jQuery('a#myimage').fancybox();
// Then I would like the popup to appear directly so I do...
jQuery('a#myimage').click();
...但它确实不起作用,因为有时候,当点击开启时,fancybox还没有激活! 有没有办法在fancybox完全初始化时执行点击?
提前致谢