当谈到 jQuery、匿名函数和延迟时,我显然遗漏了一些基本的东西。
以下代码在每个页面加载时仅工作一次(它将添加类,然后在 1 秒后将其删除,如果我再次单击,它将添加类,但在页面期间永远不会删除类,除非我重新加载页面):
var jElement = $(currElem);
jElement.addClass("highlight")
.delay(1000)
.queue(function(){
$(this).removeClass("highlight");
});
然而,
如果我添加(不存在的)函数调用作为参数,并且我在我的匿名函数中调用它,那么添加/删除类组合将无限期地工作。
var jElement = $(currElem);
jElement.addClass("highlight")
.delay(1000)
.queue(function(randomFunction){
$(this).removeClass("highlight");
randomFunction(); //this makes it seemingly 'miraculously' work??
});
边注:
var jElement = $(currElem);
jElement.addClass("highlight")
.delay(1000)
.queue(function(randomFunction){
$(this).removeClass("highlight");
// this does NOT work; if I dont actually call the 'randomFunction'
// so that function, even though it does nothing; must somehow cause
// the implicit call of 'dequeue()' ??
});