Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

จะตรวจสอบได้อย่างไรว่าเบราว์เซอร์ออนไลน์หรือออฟไลน์ด้วย JavaScript


ในการตรวจสอบว่าเบราว์เซอร์ออนไลน์หรือออฟไลน์ด้วย JavaScript โค้ดจะเป็นดังนี้ −

ตัวอย่าง

<!DOCTYPE html>
<html>
<body>
<h1>Online or offline with JavaScript example</h1>
<h2>Click the button below to check if you are online or not</h2>
<button onclick="checkOnlineOffline()">Check online/offline</button>
<h2 class="sample"></p>
<script>
   function checkOnlineOffline() {
      if(navigator.onLine===true){
         document.querySelector('.sample').innerHTML = "You are connected to internet"
      } else {
         document.querySelector('.sample').innerHTML = "You are not connected to internet"
      }
   }
</script>
</body>
</html>

ผลลัพธ์

รหัสข้างต้นจะสร้างผลลัพธ์ต่อไปนี้ -

จะตรวจสอบได้อย่างไรว่าเบราว์เซอร์ออนไลน์หรือออฟไลน์ด้วย JavaScript

เมื่อคลิกปุ่ม “ตรวจสอบออนไลน์/ออฟไลน์” −

จะตรวจสอบได้อย่างไรว่าเบราว์เซอร์ออนไลน์หรือออฟไลน์ด้วย JavaScript