Document.write 被缓存
我在页面加载之前使用脚本通过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试在脚本标记中使用虚拟参数...您可以从服务器端语言处理它...并且它看起来像这样:
此外,头标记中的这段代码将帮助您:
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:
Also this code in your head tag will help you: