$(this).parents('.abc');
要么
$(this).parent('.abc');
$(this).closest('.abc');
.parent()和.parents()是类似的,除了.parent()仅在DOM树中上升一级.
.parent()
.parents()