Computer >> Máy Tính >  >> Lập trình >> Javascript

Giao thức vị trí Thuộc tính trong JavaScript.

Thuộc tính giao thức vị trí trong JavaScript được sử dụng để thiết lập hoặc trả về urlprotocol hiện tại bao gồm cả url.

Sau đây là mã cho thuộc tính giao thức vị trí trong JavaScript -

Ví dụ

<!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>

Đầu ra

Giao thức vị trí Thuộc tính trong JavaScript.

Khi nhấp vào nút 'BẤM VÀO ĐÂY' -

Giao thức vị trí Thuộc tính trong JavaScript.