0

我用一个表格在 wordpress 中使用了 fancybox 插件。因此,当单击按钮时,表单会弹出,但当弹出窗口关闭并重新单击按钮时,表单不会出现。在我看来,模态包含表单的 div (fancyboxID-1) 已从 DOM 中删除,因此当您再次单击该按钮时,模态不会显示任何内容。

html:

<div style="display:none" class="fancybox-hidden"><div id="fancyboxID-1">
    <?php gravity_form(1, true, true, true, null, true, 3); ?>

    </div></div>

    <a href="#fancyboxID-1" class=" va-contact-link listing-contact-link cboxElement">Click here to enter your details</a>

CSS:

a.va-contact-link {
background: -moz-linear-gradient(center top , #FFFFFF, #EEEEEE) repeat scroll 0 0      transparent;
border: 1px solid #CCCCCC;
border-radius: 5px 5px 5px 5px;
color: #666666;
display: inline-block;
font-size: 11px;
font-style: italic;
font-weight: bold;
margin: 0 10px 10px 0;
padding: 5px 8px;
}

我该如何解决这个问题?

请帮忙。

谢谢

4

2 回答 2

0

使用Firebug找到(Close popup)函数,看代码。

在那里你会知道它是否删除了表格!如果是,则将其更改为fadeOut()或之类的hide()东西!

如果它不起作用粘贴代码,我会检查它!

于 2013-09-12T05:39:02.623 回答
0

问题出在我使用的 jQuery colorbox 上。该版本似乎存在错误或其他问题。我更新了它,问题得到了解决。

感谢大家。

于 2013-09-12T13:37:48.237 回答