“comment”字段有“id”和“class”,我不能给出唯一的“id”,因为它来自数据库(动态输出)。我曾尝试使用 Jquery 来“切换”(隐藏和显示),但是当我单击特定的“评论”字段时,所有表单(文本区域)都会出现(切换)。如何切换具有相同 id 或类的特定字段?
$(".commentForm").hide();
$(".askForComment").click(function(){
$(".commentForm").toggle();
});
<div id='comments'>
<div id='askForComment' class='askForComment'>Comments?</div>
<div id='viewComments'></div>
<form id='commentForm' class='commentForm'>
<textarea cols='20' rows='2'></textarea>
<input type='button'>
</form>
</div><!-- this element is looped (dynamic) -->