admin管理员组文章数量:1344241
In my web application I wants the java script to clear the cache when the user close the browser.
The javascript should listen to the event and clear the cache.
Can anyone please provide me sample code or any useful link?
In my web application I wants the java script to clear the cache when the user close the browser.
The javascript should listen to the event and clear the cache.
Can anyone please provide me sample code or any useful link?
Share Improve this question asked Jul 11, 2012 at 6:50 user1514499user1514499 7717 gold badges26 silver badges64 bronze badges 04 Answers
Reset to default 7Technically is impossible. What you can do instead is to tell the browser to not cache the page by using the following meta tags:
<meta http-equiv='cache-control' content='no-cache'>
<meta http-equiv='expires' content='0'>
<meta http-equiv='pragma' content='no-cache'>
Here is an article for reference http://www.htmlgoodies./beyond/reference/article.php/3472881
For clearing Cache followiwng link is helpful Clear the cache in JavaScript
You write some javascript run when you try to close the browser like below
window.onbeforeunload = function ()
{
// write your code here
}
But why do you need to clear cache before closing browser?
Yes this is imposible but I would sugguest you can try the meta tags or you can set a versioning system for instance like this
<?php
session_start();
$versionNumber = '';
if(!isset($_SESSION['versionNumber']))
{
$versionNumber = time() ;
$_SESSION['versionNumber'] = $versionNumber;
}
else
{
$versionNumber = $_SESSION['versionNumber'];
}
?>
<script src="home.js?v=<?php echo $versionNumber; ?>" ></script>
With JavaScript its not possible. But using no-cache header you can do it.
Use one of these methods which work on all browsers
本文标签: sessionjavascriptcode to clear the cache on closing the browserStack Overflow
版权声明:本文标题:session - javascript - code to clear the cache on closing the browser - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743697680a2523781.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论