我对每个帖子都有评论表。我只想在单击评论链接时显示输入框。
$("*#comment_form").hide();
$(".comment_link").click (function(){
$("#comment_form").show(); // problem here...
});
我已经使用上面的这个脚本来隐藏页面加载时的所有评论框(评论 div)。当点击评论链接时,我想为该特定帖子显示一个评论框。
<a class="comment_link href="#">Comment</a>
<div id="comment_form">
<form id="form_comment" action="docomment.php" method="post">
<input type="text" name="comment">
</form>
</div>