下面的代码,如果我移动我的光标只有我得到x但默认情况下它应该是启用而x是重复的。它不应该重复
$(".comment").(function() {
$(this).append("<span class='close'>x</span>");
}, function() {
$(this).find("span.close").remove();
}).delegate(".close", "click", function() {
$(this).closest("div.comment").remove();
});