admin管理员组文章数量:1390803
I'm currently working on this really simple text based game and to play again, you have to refresh the page. This seems to work in Opera and Chrome, but it's not resetting the page in Firefox. Here is the function I'm using.
$(function() {
$('#play_again').click(function() {
var answer = confirm ("Reset the game?")
if (answer) {
window.location.reload();
}
});
});
I think Firefox is caching the page or something. How could I make this work?
I'm currently working on this really simple text based game and to play again, you have to refresh the page. This seems to work in Opera and Chrome, but it's not resetting the page in Firefox. Here is the function I'm using.
$(function() {
$('#play_again').click(function() {
var answer = confirm ("Reset the game?")
if (answer) {
window.location.reload();
}
});
});
I think Firefox is caching the page or something. How could I make this work?
Share Improve this question asked Apr 26, 2012 at 17:41 Jack DavisJack Davis 5954 gold badges11 silver badges17 bronze badges 3- try history.go(0) as i suggested in my answer ... – Pranay Rana Commented Apr 26, 2012 at 18:06
- is it helpful for you ???????????? – Pranay Rana Commented Apr 26, 2012 at 18:53
- I ended up using Jakob's answer, but thanks. – Jack Davis Commented Apr 28, 2012 at 19:57
4 Answers
Reset to default 4Instead of using window.location.href
, I suggest using window.location.replace
. Why? Because href
will add a new entry to the browser history. This may not be the behavior you're expecting.
window.location.replace( window.location.href )
this is something that's hard to do, but you can trick IE's and firefox's cache into thinking it's a new page by adding a random querystring. Can you try something like
window.location.href = window.location.href + '?refresh';
Try
$(function () {
$('#play_again').click(function () {
var answer = confirm("Reset the game?")
if (answer) {
$("form").each(function () {
this.reset();
});
window.location.reload();
}
});
});
This works:
document.location=document.location;
本文标签: Refreshing a page with JavaScript in FirefoxStack Overflow
版权声明:本文标题:Refreshing a page with JavaScript in Firefox - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744753181a2623302.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论