当点击框wordpress评论时,花式框关闭

时间:2012-02-25 19:07:16

标签: fancybox wordpress-plugin

我几乎没有尝试解决它,但不能。我将代码添加到comments.php文件中,这样如果我选择留下评论花式框将打开一个弹出窗口发布评论,它会弹出但是当我选择弹出窗口时它只是关闭。我的代码如下。请帮忙

<script type="text/javascript">
    $(document).ready(function() {
    $(".various").fancybox({
        maxWidth    : 800,
        maxHeight   : 600,
        fitToView   : false,
        width       : '100%',
        height      : '100%',
        autoSize    : false,
        closeClick  : false,
        openEffect  : 'none',
        closeEffect : 'none'
    });
});
</script>
<div class="comment-buttons"><a href="#inline1" class="various" title="Leave a Comment">
                        Leave a Comment</a></div>
                        <div id="inline1" style="display: none;width:600px;height:410px;"><?php comment_form(); ?></div>

1 个答案:

答案 0 :(得分:0)

我自己解决了,

我添加了

  

hideOnContentClick:false,

然后解决了问题。