当点击“iframe”类的链接时,我有一个打开iframe颜色框的现有调用:
$(".iframe").colorbox({iframe:true, width:"200px", height:"500px"});
我想在这个颜色框中添加一个回调函数,以便在它即将打开时触发一个函数:
onOpen:function(){ alert('colorbox is about to open'); }
但这段代码在哪里?我尝试将它添加到colorbox()但是整个事情都失败了。我有点困惑。
答案 0 :(得分:4)
它可以选择如下:
$(".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
}
和here是一个有效的例子。