目前我使用
$(this).parent().parent().parent().parent().$(".collapse");
我试图使用.closest(" .playerul")但它没有找到任何东西。 在父母中传递选择器也没有成功 我必须这样:
答案 0 :(得分:1)
试试这个:
var value = $(this).closest('.playerul').next(".collapse");
value.hide(); // to hiding
console.log(value);