jQuery colorbox和onOpen回调事件

时间:2012-08-22 21:26:54

标签: jquery colorbox

我正在使用jQuery colorbox并将HTML加载到iframe中。一切正常。而 iframe加载,我想显示一条消息“沿着页面正在加载”

我尝试使用回调界面....如果我使用发送警报的传统示例 在加载/打开事件之前,它可以正常工作。如果我尝试使用document.write来显示消息, 我看到了消息,但iframe没有加载。

            //Examples of how to assign the ColorBox event to elements
            $(".iframe").colorbox({
                                            iframe:true, width:"80%", height:"80%",
                                           onOpen:function(){document.write("fff"); }

                                });

我做错了什么?

1 个答案:

答案 0 :(得分:1)

页面加载后请勿使用document.write()。如果这样做,它将完全停止文档的内容。实际上,just don't use document.write() at all

如果你需要比alert()更好的东西进行测试&调试(你这样做)使用console.log()