最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

jquery - how to refresh page using javascript if connected? - Stack Overflow

programmeradmin3浏览0评论

I have a web page that i want it to refresh every 2 minutes, using the following code:

location.reload();

The problem is that I assume that the user is connected; but if it happened that s/he is not connected online the page will fail and give the default browser(no connection error page ); and the page will never refresh except manually by the user

can i include a ping mechanism to decide weather to refresh or not?

I have a web page that i want it to refresh every 2 minutes, using the following code:

location.reload();

The problem is that I assume that the user is connected; but if it happened that s/he is not connected online the page will fail and give the default browser(no connection error page ); and the page will never refresh except manually by the user

can i include a ping mechanism to decide weather to refresh or not?

Share Improve this question asked Mar 25, 2014 at 10:34 stackunderflowstackunderflow 3,8835 gold badges34 silver badges45 bronze badges 4
  • 8 Fetch the content of the page via AJAX and replace the DOM on success and don't on fail. Or simply do an AJAX ping to your server and on success issue window.location.reload(); – Klemen Tusar Commented Mar 25, 2014 at 10:36
  • Reloading a page every two minutes has to be borderline insain. What user wants to have the page they are viewing reloaded every two minutes, it's like the worst UX ever. There used to be a meta tag for this, and it still works in all browser, but you've probably never even heard about it because everyone and they're grandma stopped using it in 1995. – adeneo Commented Mar 25, 2014 at 10:41
  • @techouse i wish you rewrite your ment as an answer so that I accept it as the correct answer :) – stackunderflow Commented Mar 25, 2014 at 10:48
  • 1 Ahh, too late. The boys already worked it out :) – Klemen Tusar Commented Mar 26, 2014 at 11:29
Add a ment  | 

4 Answers 4

Reset to default 8

You can use navigator.onLine to detect a network connection

setInterval(function() {
    if (navigator.onLine) {
        location.reload();
    }
}, 120000); /* 120000 ~> 2 minutes */

otherwise, you may use instead an HEAD ajax request to a same-domain resource and refresh the page only if the response return a 200/304 status, e.g.

setInterval(function() {

    $.ajax({ 
        url  : "/favicon.ico", /* or other resource */
        type : "HEAD"
    })
    .done(function() {
        location.reload();
    });
}, 120000); /* 120000 ~> 2 minutes */

One possibility is to send a query to your server or a very reliable server and check if you get a reply.

The problem with navigator.onLine is that it tells the browser status, but the browser may have an online status while there is no network.

See: Detect Internet Connection as in Gmail Javascript

You could use the boolean :

if (navigator.onLine) {
    //Actions
}

Try this,

var clrInterval=null;
clrInterval = setInterval(function(){
    $.ajax({
       url:'',data:'',
       success:function(data);{
         if(data=='no-success') {
            // your code if no-success
         } else {
            clearInterval(clrInterval);// clear interval if you get success
         }
       }
    });
},5000);
发布评论

评论列表(0)

  1. 暂无评论