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 文件时重新加载它们,这可以在较少的监视模式功能中看到(在此处输入链接描述-> 监视模式)。
不幸的是,我不知道监视模式是如何工作的,以及为什么 JS 文件可能或不可能。
我不知道你为什么不直接按 Ctrl+R 或 F5,但你可以src使用 jQuery 更新属性:
src
$('script').each(function () { $(this).attr('src', $(this).attr('src')); });
这应该使他们重新加载。把它放在setInterval/中requestAnimationFrame。我希望这仅用于测试。
setInterval
requestAnimationFrame