全部,
我有一个“信用模块”(类似于游戏中的信用系统),当用户执行操作时,它会创建一个内部 div,其中包含要添加或减去的成本,以便用户可以看到最后一个操作的成本是多少。
问题:只要调用一次函数,一切正常,如果用户快速执行多个操作,则 setTimeout 函数(假设动画然后删除成本 div)不会执行。似乎该函数的第二个实例重置了第一个的 setTimeout 函数。
(function()
{
$("#press").on("click", function(){creditCost(50)});
function creditCost(x)
{
var eParent = document.getElementById("creditModule");
// following code creates the div with the cost
eParent.innerHTML += '<div class="cCCost"><p class="cCostNo"></p></div>';
var aCostNo = document.getElementsByClassName("cCostNo");
var eLatestCost = aCostNo[aCostNo.length - 1];
// following line assigns variable to above created div '.cCCost'
var eCCost = eLatestCost.parentNode;
// cost being assigned
eLatestCost.innerHTML = x;
$(eCCost).animate ({"left":"-=50px", "opacity":"1"}, 250, "swing");
// following code needs review... not executing if action is performed multiple times quickly
setTimeout(function()
{
$(eCCost).animate ({"left":"+=50px", "opacity":"0"}, 250, "swing", function ()
{
$(eCCost).remove();
})
}, 1000);
}
})();