无需 JavaScript 即可加载内容

发布于 2024-10-21 22:58:33 字数 292 浏览 1 评论 0原文

我编写的网站有一个主要的 JavaScript/jQuery 文件,其中包含我的大部分主要功能。

但在我的页面上,我使用了一些 .load("example.php") 函数,以帮助节省主加载页面时间。我遇到的问题是,如果我想使用我已加载的一些主要函数,我必须在 example.php 中再次加载我的 MAIN JavaScript/jQuery 文件。

但这似乎不是很聪明和高效,我是否缺少一些东西可以使我不必这样做???

任何有关此主题的说明都将不胜感激。 干杯。

I have written my website to have a main, JavaScript/jQuery file that houses most of my main functions.

But on my page I am using some .load("example.php") functions, to help save the main load page time. The problem I'm running into is that WITHIN example.php I have to load my MAIN JavaScript/jQuery file again if I want to use some of the main functions that I have loaded.

But that doesn't seem very smart and efficient, is there something I'm missing that would enable me to not have to do that????

Any light would be appreciated on this topic.
cheers.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

违心° 2024-10-28 22:58:33

不用担心,您可以使用缓存标头来设置文件的缓存时间。
因此,将进行下一次调用,但将从缓存而不是服务器中获取文件。

Do not worry, you can use cache headers to setup caching time for your file.
So the next call will be made, but will take the file from cache and not your server.

四叶草在未来唯美盛开 2024-10-28 22:58:33

您只需每页加载一次 Javascript 文件。如果主页面已经加载了,那么当你加载更多的内容时就不需要再次加载了。

You only need to load the Javascript file once per page. If the main page has loaded it, you don't need to load it again when you load more content into it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文