在我的父母身上:
$.colorbox({width:"400px", height:"400px", iframe:true, href:"test.html"});
所以在我的iFrame中我尝试过:
$(document).ready(function() {
window.parent.$.bind("cbox_cleanup", function() {
alert("test");
});
});
当用户通过点击颜色框边界外部的操作关闭颜色框时,这就是努力将在iFrame中设置的值传递给父级。尽管我没有收到任何错误,但上述内容并未触发。
非常感谢您的任何帮助或建议。
答案 0 :(得分:0)
在彩盒选项中设置您的活动。
$.colorbox({
width:"400px",
height:"400px",
iframe:true,
href:"test.html",
onCleanup: function() {
alert('test');
}
});
只有一个信息,onCleanup
会在何时启动关闭过程时触发。