.js 文件后面的 ?history=1 是什么意思?

发布于 2024-10-31 03:02:26 字数 390 浏览 1 评论 0原文

可能的重复:
将“?v=1”附加到链接和脚本标记中的 CSS 和 Javascript URL 有何作用?

我看到一些 JS 和 CSS 文件带有此内容,但不太确定它的含义或用途。在 Asual jQuery Address 插件中,您可以添加查询字符串来确定要打开和关闭的选项。

someFile.js?history=1

Possible Duplicate:
What does appending “?v=1” to CSS and Javascript URLs in link and script tags do?

I have seen some JS and CSS files carry this and not quite sure what it means or what its used for. In the Asual jQuery Address plugin you can add query strings to determine what options to switch on and off.

someFile.js?history=1

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

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

发布评论

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

评论(2

单调的奢华 2024-11-07 03:02:26

此查询字符串值使文件的每个新版本(无论是 javascript、css 或其他资产)都是唯一的,以便浏览器获取最新版本,忽略任何以前缓存的版本(并且浏览器不会有缓存版本,因为URL 是唯一的)。

This querystring value makes each new version of the file (be it javascript, css, or some other asset) unique so that the browser grabs the latest version, ignoring any previously cached version (and the browser won't have a cached version, since the URL is unique).

囚你心 2024-11-07 03:02:26

它确保用户拥有最新版本的 JS 或 CSS 文件,以防浏览器缓存旧版本。

It ensures that users have the latest version of a JS or CSS file in case an older version is cached by their browser.

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