1

在父母中,我有:

$.colorbox({width:"400px", height:"400px", iframe:true, href:"test.html"});

因此,在我的 iFrame 中,我尝试过:

$(document).ready(function() {
    window.parent.$.bind("cbox_cleanup", function() {
        alert("test");
    });
});

这一切都是为了在用户通过单击颜色框边界外的操作关闭颜色框时将 iFrame 中设置的值传递给父级。尽管我没有收到任何错误,但上述内容并未触发。

非常感谢您的任何帮助或建议。

4

1 回答 1

0

在颜色框选项中设置您的事件。

$.colorbox({
    width:"400px",
    height:"400px",
    iframe:true,
    href:"test.html",
    onCleanup: function() {
        alert('test');
    }
});

只是一个信息,onCleanup当开始关闭过程时触发。

于 2013-09-06T18:47:54.233 回答