我试图让WordPress评论表格不是一直显示,而是在点击按钮时打开。我试过的下面代码效果很好。
问题是我还希望通过单击相同的按钮来隐藏表单。有关如何做到这一点的任何建议吗?
<a href="#" ID="Leave_a_comment">Click here to leave a Comment</a><
<div id="comment_form_wrapper" style="display: none;">
<?php comments_template( '', true ); ?>
</div>
<script type="text/javascript">
$(document).ready(function() {
$('#Leave_a_comment').click(function(event) {
event.preventDefault();
$('#comment_form_wrapper').show();
});
});
</script>