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

คุณสมบัติโปรโตคอลตำแหน่งใน JavaScript


คุณสมบัติโปรโตคอลตำแหน่งใน JavaScript ใช้สำหรับการตั้งค่าหรือส่งคืน urlprotocol ปัจจุบันรวมถึง url

ต่อไปนี้เป็นรหัสสำหรับคุณสมบัติโปรโตคอลตำแหน่งใน JavaScript -

ตัวอย่าง

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
   body {
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
   }
   .result {
      font-weight: 500;
      font-size: 18px;
      color: blueviolet;
   }
</style>
</head>
<body>
<h1>Location protocol Property in JavaScript</h1>
<div class="result"></div>
<button class="Btn">CLICK HERE</button>
<h3>Click on the above button to get the location protocol of the current url</h3>
<script>
   let resEle = document.querySelector(".result");
   let BtnEle = document.querySelector(".Btn");
   BtnEle.addEventListener("click", () => {
      resEle.innerHTML = "Current url protocol = " + location.protocol;
   });
</script>
</body>
</html>

ผลลัพธ์

คุณสมบัติโปรโตคอลตำแหน่งใน JavaScript

เมื่อคลิกปุ่ม 'คลิกที่นี่' -

คุณสมบัติโปรโตคอลตำแหน่งใน JavaScript