0

我正在尝试在以下函数中选择一个元素:

  $('.reply-comment').live('click', function(){
if( $(this).parents('.element_footer').find('.reply, .send-reply').is(':hidden') ){
  $(this).parents('.element_footer').find('.reply, .send-reply').slideDown('fast');
}else if( $(this).parents('.element_footer').find('.reply, .send-reply').is(':visible') ){
  $(this).parents('.element_footer').find('.reply, .send-reply').slideUp('fast');
}
return false;

});

之后:.find('.reply, .send-reply').slideDown('fast')我会链接一个.focus()just to .replyelement

我如何从中选择它$(this)

4

1 回答 1

2

利用.filter()

描述:将匹配元素的集合减少为匹配选择器或通过函数测试的元素。

$(this).filter('.reply');
于 2013-05-07T10:28:20.457 回答