我想找到所有.post-comment-replies
有嵌套在他們(不是第一級)的'.post-comment-reply'
。jquery選擇所有有條件的兒童班級
使用下面的代碼我也得到那些沒有.post-comment-reply
嵌套在他們那些.post-comment-replies
。
$(document).on('click', '.open-all-post-comments', function (event) {
var post_id = $(this).data('pid');
var all_replies = $('#post_' + post_id).find('.post-comment-replies');
all_replies.show();
$(this).closest('.open-all-post-comments-row').hide();
});
你是什麼意思_「(不是第一級)」 _? – guest271314
我的意思是它嵌套深,所以像'.children()'不能工作。 –