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

จะคืนโปรโตคอล (http หรือ https) ของหน้าเว็บด้วย JavaScript ได้อย่างไร


ใช้วัตถุ window.location เพื่อส่งคืนโปรโตคอล หน้าต่าง . ocation.protoco l จะส่งคืนโปรโตคอลของเว็บเช่น http หรือ https

ตัวอย่าง

<!DOCTYPE html>
<html>
   <body>
      <script>
         document.write("https or https: <br>The protocol is:"+window.location.protocol);
      </script>
   </body>
</html>