gpt4 book ai didi

javascript - 在html文件的一行中引用多个js文件

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:16:35 41 4
gpt4 key购买 nike

有没有一种简单的方法可以在一个 HTML 文件中引用所有的 js 文件,而不是一个一个地引用它?

而不是这个-

<script type="text/javascript" src="js/controllers/mainCtrl.js"></script>
<script type="text/javascript" src="js/controllers/browseCtrl.js"></script>
...

我正在寻找这样的东西 -

<script type="text/javascript" src="js/controllers/*.js"></script>

或者是否有一种工具可以将这些文件的内容复制到一个文件中并改为引用该文件?这将最大限度地减少 HTTP 调用。

最佳答案

Is there an easy way to reference all js files in an HTML file rather than referencing it one by one?

对于“容易”的一些值(value)。不过,浏览器中没有内置任何东西可以做到这一点。

Or is there a tool out there that copies the contents of these files into one file and reference that one file instead?

有很多。 cat 是最简单的。

从您常用的构建工具中调用它。

你可以使用类似 require.js 的东西在开发期间在运行时组合它们,并通过 Node 从您的构建工具调用 r.js 为您的暂存和实时环境打包。

关于javascript - 在html文件的一行中引用多个js文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15951645/

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