我正在使用colorbox进行模态弹出,弹出窗口的内容来自URL,因为它显示在iFrame中,如何在模式弹出窗口中添加关闭按钮?
由于
这是彩盒的代码
<a class="Modal" href="http://google.com" onclick="openModal();">Click here</a>
和js:
var openModal = function (){
$(".Modal").colorbox({
iframe:true,
opacity:0.5,
scrolling:true,
width:832,
height:456,
top:60
});
}
答案 0 :(得分:8)
尝试将其添加到colorbox-iframe.html
<input type="button" name="btnClose" value="Close" onclick="parent.$.colorbox.close()" />
答案 1 :(得分:0)
之前我从未使用过colorbox,但也许你想在你的函数中通过jQuery添加关闭按钮:
var openModal = function (){
$(".Modal").colorbox({
iframe:true,
opacity:0.5,
scrolling:true,
width:832,
height:456,
top:60
});
$("<div class='thisClosesTheModal'>Close Modal</div>").appendTo(".Modal");
// style .thisClosesTheModal to look like a close box
}
// and then the function that closes the modal
$(".thisClosesTheModal").live('click', function(){
$('Modal').hide();
}