gpt4 book ai didi

javascript - 我如何知道库何时已完全加载

转载 作者:行者123 更新时间:2023-11-28 12:54:10 24 4
gpt4 key购买 nike

如何更改此代码以在 js 库加载完成时运行该函数?使用普通的 javascript

因为我使用的计时器不适用于缓慢的互联网连接

imported = document.createElement('script');
imported.src = 'https://pastebin.com/raw/dRap1YD8';
document.head.appendChild(imported);

var delayInMilliseconds = 1000;

setTimeout(function() {
.
.
.
}, delayInMilliseconds);

请注意,pastebin 仅用于测试

最佳答案

您正在寻找的是 onLoad 方法。看看here at the api ,它看起来像

imported.onload = function() {alert('已加载'); }

关于javascript - 我如何知道库何时已完全加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57298311/

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