我想在我的一个页面上动态生成一个花式框弹出窗口。这个想法是,我生成一个图像,应用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完全初始化时,有没有办法执行点击?
提前致谢