我使用 jquery 和 colorbox lightbox 插件在 ligthbox 中打开 iframe。
问题是:
- 我点击按钮打开我的主 iframe 灯箱
- 在主 iframe 灯箱内 - 有类 .flash_shareable 的按钮
- 当您单击时,它应该关闭父级(即主 iframe),然后打开一个它链接到的新 iframe
它正在关闭父 iframe,但没有打开新的 iframe。
我的代码:
$(document).ready(function(){
var y = $(document.body).height();
var x = $(document).width();
parent.$.colorbox.resize({innerWidth:x, innerHeight:y});
$('.iframe').colorbox({iframe:true}); //ligthbox
$(".flash_shareable").click(function() {
parent.$.colorbox.close();
$.colorbox({href:"faq.html", iframe:true, width:800 + "px", height:600 + "px", open:true});
})
});
iframe 的 HTML,我试图从中打开另一个 ligthbox:
<button class="flash_shareable" type="button">open flash</button>