gpt4 book ai didi

javascript - setTimeout 不起作用?

转载 作者:行者123 更新时间:2023-11-30 00:28:53 25 4
gpt4 key购买 nike

我的 JavaScript 代码是这样的:

<script type="text/javascript">
ZeroClipboard.config({ swfPath: "/Content/ZeroClipboard.swf" });

var client = new ZeroClipboard($(".copy-button"));
client.on('copy', function (event) {
event.clipboardData.setData('text/plain', event.target.innerText);
});

client.on("aftercopy", function (event) {

$("#alerta button").after('<span>Matricula copiada</span>');
$('#alerta').fadeIn('slow');
$('#alerta').setTimeout(close(), 3000);
});
</script>

我在 body 上有 div :

  <div class="alert alert-info" id="alerta" style="display: none; ">
<button type="button" class="close"></button>
</div>

但是我的setTimeout 不起作用。我能做什么?

最佳答案

setimeout应该这样写

$('#alerta').setTimeout(close, 3000);

没有括号。

关于javascript - setTimeout 不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30339276/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com