我从数据库中提取元素到表中,并且我正在使用jquery向下滑动并向上移动下一个表数据。 当当前的下一个是slideDown时,我希望其他所有对象都可以使用slideUp。如何实现这一点。需要您的帮助。
$(document).on("click",".getVideoIdForPlay",function(event){
var ID = $(this).attr('name');
var $this = $(this);
$.post('playVideo.php',{ID:ID}, function(getVideo){
$this.parents(':eq(1)').next().find('td').html(getVideo).slideToggle(500);
});
});