Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经修改了js,lightbox不知道怎么做才能让其他浏览器为新版本加载。在我的机器上我做到了Ctrl-F5,但我不知道如何为访问者浏览器做到这一点。我在想我可以修改 的文件名.js,但这不是一个干净和公平的方法。
lightbox
Ctrl-F5
.js
你有什么建议吗?
尝试从您的配置服务器发送 version_number 。
<script src="lightbox.js?version_number"></script>
你可以使用这样的东西:
randomNumber = Math.floor(Math.random()*999); <script src="lightbox.js?randomNumber"></script>
它应该强制浏览器在每次页面刷新时去下载最新版本的 js 文件。