admin管理员组

文章数量:1348065

I want to reload my page after all my code is loaded without using a button.

I used: location.reload();

The problem is that it repeatedly reloads my page all time.

I want to reload my page after all my code is loaded without using a button.

I used: location.reload();

The problem is that it repeatedly reloads my page all time.

Share Improve this question edited Dec 17, 2012 at 20:48 Scott Roepnack 2,7355 gold badges21 silver badges36 bronze badges asked Dec 17, 2012 at 20:37 MilsMils 3886 silver badges22 bronze badges 6
  • 3 Why? Smells like an XY problem. – Matt Ball Commented Dec 17, 2012 at 20:39
  • Even if you do it after your page has finished loading it will still reload in a loop .. at what point do you want it to stop reloading? – Explosion Pills Commented Dec 17, 2012 at 20:39
  • 2 This is one of those questions where we really would like to know what you're trying to acplish, so we can suggest a solution. – Michael Berkowski Commented Dec 17, 2012 at 20:40
  • 1 @Explosion Pills : exactly like a loop, I want to execute this function just one time after my page loaded totally. – Mils Commented Dec 17, 2012 at 20:41
  • 1 @SlimMils: Why does it reload the page? What are you trying to do? – gen_Eric Commented Dec 17, 2012 at 20:44
 |  Show 1 more ment

3 Answers 3

Reset to default 7

Your window.reload() is getting hit every time the page is reloaded. Do something like this:

if(window.location.href.indexOf('?reloaded') === -1) window.location.href = window.location.href + "?reloaded=true";

This assumes that the page isn't using any other url parameters.

EDIT

As Matt Ball pointed out, using localStorage or cookies won't be restrictive to a single tab or window, but as Jackson Sandland pointed out in the ments, my above-given solution will alter the browser history. After doing some digging I came up with another, admittedly "hacky" but seemingly effective solution: Using window.name instead of a flag in the URL:

if(window.name !== "refreshed") {
    window.name = "refreshed";
    window.location.refresh();
}

If you'd like to test this out, paste the following in an HTML file and load it in your browser:

<script>
window.name = prompt("Window name", window.name);
</script>

Enter a new name, then refresh the page. You'll see that on refresh the new name is displayed. Similarly, if you then open a second tab with the same file, you can set the name for that tab independently of the other.

Your best bet is to flag somewhere that it has been reloaded once. Using cookies or localStorage as said by Matt, if you need per-tab you can change the location.hash

Maybe you can help us understand WHY you want to reload, there could be another way.

You need to store some sort of state outside of the page's JavaScript that will indicate whether or not to refresh. One way is to use localStorage, or a cookie, but neither of these will work per-tab or per-window.

本文标签: jqueryHow to reload the page one time using javaScriptStack Overflow