JavaScript-এ অবস্থান প্রোটোকল প্রপার্টি url সহ বর্তমান urlprotocol সেট বা ফেরানোর জন্য ব্যবহৃত হয়।
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> আউটপুট

'এখানে ক্লিক করুন' বোতামে ক্লিক করলে -
