我使用jquery和colorbox灯箱插件在ligthbox中打开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>
答案 0 :(得分:0)
我修复了它,但我仍然觉得需要一些东西^ _ ^ 它在Internet Explorer 8及以下版本中不起作用,我希望任何人都可以帮助直到?请:)
$(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() {
$.colorbox({href:"faq.html", iframe:true, open:true});
})
});