以编程方式更改ColorBox onClick的宽度/高度

时间:2010-04-15 13:56:54

标签: jquery colorbox

我正在使用jquery插件ColorBox

我有一个包含多个商品详情的页面。每个列表都附有一个ColorBox。

$("a.modalButton").each(function(){
    $(this).colorbox({
        width:"933px", 
        height:"720px", 
        iframe:true, 
        onComplete:function(){ 
            //remove the text from the close button
            //wasn't sure how else to do that
            $('#cboxClose').html('');
            }
    });
});

在每个ColorBox窗口中都有一个“给我发邮件”按钮。单击它时,我用窗体替换窗口中的html内容,通过电子邮件发送列表。

我希望在点击此按钮后调整窗口大小以适合表单

1 个答案:

答案 0 :(得分:4)

如下:

$('.email_me_class').click(function() {
  $.colorbox.resize() 
})

将它扔出去,之前从未使用过这个插件。