这可能只是我盯着代码太久而遗漏了一些重要内容的另一个例子。基本上,我在 WebKit 中有一个脚本,当发生 .click (jQuery) 事件时,它会用单击项目的内容填充另一个脚本。但是,由于某种原因,多次单击一个项目会导致 DOM 元素被删除。有任何想法吗?JSFiddle 与下面链接的代码示例。
这是我认为是罪魁祸首的功能:
$(".vote-divs .vote-div").click(function () {
$(".vote-none").hide()
$(".step-2-column-left .vote-div").each(function () {
$(this).hide();
});
$("#" + $(this).attr("id") + "-s").show();
$(".confirm-s").each(function () {
$(this).hide();
});
if ($(this).attr("id") == "vote-grow") {
$("#donation-vote-for").val("Grow");
$("#confirm-grow-s").show();
} else if ($(this).attr("id") == "vote-stache") {
$("#donation-vote-for").val("Stache");
$("#confirm-stache-s").show();
} else if ($(this).attr("id") == "vote-shave") {
$("#donation-vote-for").val("Shave");
$("#confirm-shave-s").show();
} else if ($(this).attr("id") == "vote-mutton") {
$("#donation-vote-for").val("Mutton");
$("#confirm-mutton-s").show();
} else if ($(this).attr("id") == "vote-manchu") {
$("#donation-vote-for").val("Manchu");
$("#confirm-manchu-s").show();
}
console.log(event.target);
$(".vote-none").html(event.target);
goTo("3");
});