多次遍历

时间:2016-01-26 14:17:10

标签: jquery jquery-traversing

目前我使用

$(this).parent().parent().parent().parent().$(".collapse");

我试图使用.closest(" .playerul")但它没有找到任何东西。 在父母中传递选择器也没有成功 我必须这样: enter image description here

1 个答案:

答案 0 :(得分:1)

试试这个:

var value = $(this).closest('.playerul').next(".collapse");
value.hide(); // to hiding 
console.log(value);