在父母中,我有:
$.colorbox({width:"400px", height:"400px", iframe:true, href:"test.html"});
因此,在我的 iFrame 中,我尝试过:
$(document).ready(function() {
window.parent.$.bind("cbox_cleanup", function() {
alert("test");
});
});
这一切都是为了在用户通过单击颜色框边界外的操作关闭颜色框时将 iFrame 中设置的值传递给父级。尽管我没有收到任何错误,但上述内容并未触发。
非常感谢您的任何帮助或建议。