Document.write 被缓存

发布于 2024-09-11 01:42:58 字数 480 浏览 5 评论 0原文

我在页面加载之前使用脚本通过 doucment.write 将一些 html 写入我的页面,现在这会像疯狂一样被缓存,只有硬刷新似乎才能更新它。

现在,在每个人都说“天哪,不要使用 DOCUMNNT.WRIT”之前,我将摆脱它,但目前我需要一个快速修复。

那么有没有一种方法可以强制这个脚本在每次页面更改时更新(请注意,每次页面在多个页面上更改时都会调用它)

代码是动态生成的,但通常是:

HTML:

<script type="text/javascript" src="NAV.js"></script>

生成的代码:

d = new dTree('d');
d.add(4,0,'Maps');
d.add(5,4,'Web Map','WebMap.html');
document.write(d);

I am using a script before page load to write some html into my page with doucment.write now this gets cached like crazy only a hard refresh seems to update it.

Now before everyone goes "OMG DONT USE DOCUMNNT.WRIT" I will be getting rid of it but for the moment I need a quick fix.

So is there a way I can force this script to update everytime the page changes (note that it IS called everytime the page changes on multiple pages)

Code is generated on the fly but generally:

HTML:

<script type="text/javascript" src="NAV.js"></script>

Generated code:

d = new dTree('d');
d.add(4,0,'Maps');
d.add(5,4,'Web Map','WebMap.html');
document.write(d);

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

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

发布评论

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

评论(1

云胡 2024-09-18 01:42:58

尝试在脚本标记中使用虚拟参数...您可以从服务器端语言处理它...并且它看起来像这样:

<script type="text/javascript" src="NAV.js?dummyParameter=546757657657"></script>

此外,头标记中的这段代码将帮助您:

<META http-equiv="Pragma" content="no-cache">

Try using a dummy parameter in your script tag... you can handle it from your server side language... and it will look something like this:

<script type="text/javascript" src="NAV.js?dummyParameter=546757657657"></script>

Also this code in your head tag will help you:

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