gpt4 book ai didi

javascript - 浏览器如何知道脚本是否已完成加载?

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

Web 浏览器如何知道 <script> 中的脚本是否存在?标签加载完成?

最佳答案

onload 事件在加载资源(例如脚本或样式表)时触发:

var oScript = document.createElement("script");
oScript.type = "text\/javascript";
oScript.onload = function () {
// do something when the script is loaded
}
document.getElementsByTagName("head")[0].appendChild(oScript);
oScript.src = "path/to/script";

onload 事件对内联脚本不起作用。

关于javascript - 浏览器如何知道脚本是否已完成加载?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24109473/

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