viewreplycommentbutton

viewreplycommentbutton

我的密码

 $('.viewreplycommentbutton').click(function() {
 $(this).next('.reply').slideToggle(200);
 });


我有三个<div>类别为.reply,当我单击带有链接的按钮(类别为.viewreplycommentbutton)时,它将仅显示这三个<div>之一

我想在单击按钮时查看所有这些信息(这是类.viewreplycommentbutton的链接)
但无需从jQuery代码中删除$(this)

最佳答案

.next()返回下一个立即同级元素。使用.nextAll()获取下一个所有同级:

$('.viewreplycommentbutton').click(function() {
   $(this).nextAll('.reply').slideToggle(200);
});

09-20 03:37