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

javascript - Based on internet connection change color of button to green or grey - Stack Overflow

programmeradmin2浏览0评论

I want the button itself to change its color when online(based on internet connection) to green otherwise gray.

I have a JS fiddle which gives a solution to click the button and we can see if we are online/offline by an alert.

Can someone please help

HTML:

<div data-role="page" id="index">
  <div data-theme="a" data-role="header">
    <h3>First Page</h3> <a href="#second" class="ui-btn-right">Next</a> </div>
  <div data-role="content"> <a data-role="button" id="check-connection">Check internet connection</a> </div>
</div>

jQuery:

$(document).on('pagebeforeshow', '#index', function() {
  $(document).on('click', '#check-connection', function() {
    var status = navigator.onLine ? 'online' : 'offline';
    (alert(status));
  });
});

See JSFiddle.

I want the button itself to change its color when online(based on internet connection) to green otherwise gray.

I have a JS fiddle which gives a solution to click the button and we can see if we are online/offline by an alert.

Can someone please help

HTML:

<div data-role="page" id="index">
  <div data-theme="a" data-role="header">
    <h3>First Page</h3> <a href="#second" class="ui-btn-right">Next</a> </div>
  <div data-role="content"> <a data-role="button" id="check-connection">Check internet connection</a> </div>
</div>

jQuery:

$(document).on('pagebeforeshow', '#index', function() {
  $(document).on('click', '#check-connection', function() {
    var status = navigator.onLine ? 'online' : 'offline';
    (alert(status));
  });
});

See JSFiddle.

Share Improve this question edited Nov 19, 2016 at 0:23 user6586783 asked Nov 19, 2016 at 0:19 BobBob 4778 silver badges30 bronze badges 1
  • Just move the code from the click handler to where it's executed right away: jsfiddle/khrismuc/VXWGG/278 – user5734311 Commented Nov 19, 2016 at 0:32
Add a ment  | 

2 Answers 2

Reset to default 7

Here is the working fiddle: http://jsfiddle/dn7zjm41/

I just added an if statement:

if(status==="online") {
  $("#check-connection > span").css("background-color", "green");
} else if(status==="offline") {
  $("#check-connection > span").css("background-color", "gray");
} else {
  // the code for another scenario
}

And if you want an automatic run without click event - here it is: http://jsfiddle/f6paa9xy/

In this case your Javascript should look like this:

$(document).on('pagebeforeshow', '#index', function() {             
  var status = navigator.onLine ? 'online' : 'offline';
  alert(status);
  if(status==="online") {
    $("#check-connection > span").css("background-color", "green");
  } else if(status==="offline") {
    $("#check-connection > span").css("background-color", "red");
  }
});

Hope it helps

You could use a simple css class to do this:

$(document).on('click', '#check-connection', function(){
    var status = navigator.onLine ? 'online' : 'offline';
    this.className = 'status-'+status;
});
.status-online{ background-color: green; }
.status-offline{ background-color: grey; }
<script src="https://ajax.googleapis./ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div data-role="content">
    <a data-role="button" id="check-connection">
      Check internet connection
  </a>
</div>

However, if you want a live determination, you can use an event listener provided by the browser, most support this (ie8+ for example):

window.addEventListener("offline", function() { 
    $("#check-connection")[0].className = "status-offline"; 
});
window.addEventListener("online", function() { 
    $("#check-connection")[0].className = "status-online"; 
});

More on this at MDN: https://developer.mozilla/en-US/docs/Web/API/NavigatorOnLine/onLine

发布评论

评论列表(0)

  1. 暂无评论