2

我正在为模态弹出窗口使用颜色框,并且弹出窗口的内容来自 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
     });
}
4

2 回答 2

8

尝试将此添加到colorbox-iframe.html

<input type="button" name="btnClose" value="Close" onclick="parent.$.colorbox.close()" />
于 2012-05-04T18:26:57.333 回答
0

我以前从未使用过颜色框,但也许您想通过 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();

}
于 2012-05-04T22:21:12.830 回答