3

当单击“iframe”类的链接时,我有一个现有的调用来打开 iframe 颜色框:

$(".iframe").colorbox({iframe:true, width:"200px", height:"500px"});

我想给这个颜色框添加一个回调,以便在它即将打开时触发一个函数:

onOpen:function(){ alert('colorbox is about to open'); }

但是这段代码去哪里了?我尝试将它添加到 colorbox() 但整个事情都失败了。我有点困惑。

4

1 回答 1

5

它作为一个选项如下:

$(".iframe").colorbox({iframe:true, width:"200px", height:"500px",onOpen:function(){ alert('colorbox is about to open'); }});

或者

$(".iframe").colorbox({iframe:true, width:"200px", height:"500px",onOpen:openCallBack});

function openCallBack(){
//do something here
}

是一个工作示例。

于 2012-10-05T02:14:49.893 回答