admin管理员组文章数量:1345179
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
2 Answers
Reset to default 7Here 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
本文标签: javascriptBased on internet connection change color of button to green or greyStack Overflow
版权声明:本文标题:javascript - Based on internet connection change color of button to green or grey - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743749347a2532357.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论