我正在尝试在单击时在颜色框中显示隐藏的 div
我不知道如何在颜色框中显示 div
div 是隐藏的,但我希望它在明显地显示在颜色框内时可见
<div class="test">test</div> // on click
<div id="messageform" style="display: none;"> // show this in colorbox
TEST
</div>
$('.test').click(function(){
$.colorbox({inline:true, width:"50%", open:true, href:"#messageform" });
});
这仅在表单消息表单未隐藏时才有效,但如何在颜色框中单击时显示?