无需 JavaScript 即可加载内容
我编写的网站有一个主要的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不用担心,您可以使用缓存标头来设置文件的缓存时间。
因此,将进行下一次调用,但将从缓存而不是服务器中获取文件。
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.
您只需每页加载一次 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.