在colorbox中显示多个div

时间:2012-07-05 08:30:17

标签: jquery colorbox

我试图在彩盒中显示图片div和类似按钮div。图片div和类似按钮div都在其他页面中。我想将这些div放在colorbox中,而不是页面。我怎样才能做到这一点 ?

1 个答案:

答案 0 :(得分:1)

$(document).ready(function(){
   $('#somebutton').click(function(){
            $.colorbox.init();
            $('#divwrapper').show();
            $(this).colorbox({

                        inline:true,
                        href:'#divwrapper',
                        onLoad:function(){ 
                          //do something if you want here
                        },
                        onClosed:function(){

                            $('#divwrapper').hide();
                            $.colorbox.remove();
                        }
                    });


   });
//html side

<div id="divwrapper" style="display:none;">
  <div>Your image here</div>
  <div>Your like button here</div>
</div>

});