我正在尝试在以下函数中选择一个元素:
$('.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 .reply
element
我如何从中选择它$(this)
?