gpt4 book ai didi

javascript - 加载文档后获取当前运行的javascript文件名

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:25:10 26 4
gpt4 key购买 nike

有什么方法可以在文档准备好后获取 javascript 文件的文件信息(文件名、路径),而不知道有多少脚本或它们的加载顺序?

<html>
<head>
<script src="http://www.example.ex/js/js1.js" type="text/javascript">
<script src="http://www.example.ex/javascript/js2.js" type="text/javascript">
<script src="http://www.example.ex/scripts/js3.js" type="text/javascript">
<...>

文件 js2.js 有这样的东西:

$(document).ready(function() {
// get the filename "js2.js"
}

我能做到

var scripts = document.getElementsByTagName("script"),
scriptLocation = scripts[1].src;

但是索引“[1]”必须是动态的,因为我不知道加载脚本的顺序。

最佳答案

也许完整的答案比我的评论更有帮助。如果将此代码放入 js2.js 中,您将获得所需的结果。关键是在与加载文件同步运行的一段代码中捕获 scriptLocation,这意味着在回调中。

var scripts = document.getElementsByTagName("script"),
scriptLocation = scripts[scripts.length - 1].src;

$(document).ready(function() {
// logs the full path corresponding to "js2.js"
console.log(scriptLocation);
}

关于javascript - 加载文档后获取当前运行的javascript文件名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18918569/

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