$('#cherub_sub1_plus').one("click",function(event){
event.preventDefault();
$(this).addClass("cross");
$(this).attr("src","new_image.png");
});
$('.cross').on("click",function(){
// nothing will execute here because I've changed the src
});
それは奇妙です。画像の src を変更すると、すべてのイベント ハンドラーも削除されます。