现在这个函数隐藏了所有显示的答案。我需要它来仅隐藏属于第二次单击的特定问题的答案。我对 JQuery 很陌生,所以可能有一个简单的解决方案,但任何帮助都会很棒。
$(document).ready(function() {
$(".question").click(function () {
$('.answer').hide(); // hides open answers before showing a new answer
if ($(this).next().is(":hidden")) { // check the visibility of the next element in the DOM
$(this).next().show(); // show it
} else {
$(this).next().hide(); // hide it
}
});
});