这个 setTimeout 在 Firefox 中完美运行,但在 Chrome 中,函数 timeoutTrigger 没有任何事情发生,包括警报。有任何想法吗?
var $this = $('.active-more');
function timeoutTrigger() {
$this.closest(".container").nextAll(".container:first").find(".description:first").removeClass('hide');
$this.closest(".container").nextAll(".container:first").find(".back:first").find("img.portfolio").remove();
alert("is this thing on?");
}
setTimeout(function(){timeoutTrigger()},400)