我可以使用html中的哪个函数来制作它... 当我打开网站并离线时,它会显示警告"您离线时请打开互联网连接以运行网站。"
答案 0 :(得分:2)
您可以使用window
offline
活动
window.addEventListener('offline', function(event){
alert("You are offline please turn on internet connection to run website");
});
答案 1 :(得分:0)
试试这个。
var online = navigator.onLine;
if (online == false)
{
alert("Sorry, we currently do not have Internet access.");
location.reload();
}