您可以使用父div作为范围:
$('.add_answer',$(this).parent('div:first')).attr('alt',count);
这应该工作:
$(this).parent("div").find(".add_answer").attr("alt", count);