我正在使用 head.js 并使用以下文件来启动 javascript 文件调用:
<script src="/scripts/load.js" type="text/javascript"></script>
在 load.js 文件中,我有以下代码:
head.js(
{livechat: "/scripts/livechat.js"},
{jquery: "http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"},
{jquerytools: "http://cdn.jquerytools.org/1.2.5/full/jquery.tools.min.js"},
{slider: "/scripts/jquery.nivo.slider.pack.js"},
{prettyphoto: "/scripts/jquery.prettyPhoto.js"},
{sliderfunctions: "/scripts/slidercode.js"},
{functions: "/scripts/functions.js"}
);
我的问题是,即使我删除了 livechat 行,聊天框仍然出现在我的所有网站页面上,除非我手动清除浏览器缓存。我担心的是我不再使用实时聊天服务,我不希望访问者看到实时聊天框出现但无法正常运行而感到困惑。
有没有办法告诉 head.js 正在加载的文件发生了变化并刷新浏览器缓存之类的?