什麽是協議?
網絡協議定義了網絡設備之間通信的規則和約定。通過采用這些規則,兩個設備可以相互通信並可以交換信息。
用法:
location.protocol
屬性:
- ftp:文件傳輸協議(FTP)是一種標準的網絡協議,用於在計算機網絡上的客戶端和服務器之間傳輸計算機文件。
- http:超文本傳輸協議(HTTP)是用於分布式係統的應用程序協議。
- https:安全超文本傳輸協議(HTTPS)是用於安全通信的超文本傳輸協議(HTTP)的擴展,並廣泛用於Internet。
- file:它用於文件或在本地服務器係統中。
- mailto:在郵件係統中使用。
返回值:protocol屬性返回當前URL的協議,包括冒號(:)。
下麵的示例說明了JavaScript中的location.protocol屬性:
例:
<!DOCTYPE html>
<html>
<head>
<title>Location protocol property</title>
<style>
#Gfg {
position:center;
width:220px;
height:50px;
color:green;
}
</style>
<script>
// Function that tells the Protocol
// of current url.
function Protocol() {
var gfg = location.protocol;
alert("protocol is:" + gfg);
}
</script>
</head>
<body>
<div id = "Gfg">
<h1>GeeksforGeeks</h1>
</div>
<p>Click to know the protocol of current URL.</p>
<button onclick = "Protocol()">Protocol</button>
</body>
</html>
輸出:
相關用法
- javascript MouseEvent which用法及代碼示例
- javascript Error name用法及代碼示例
- Javascript Math.PI用法及代碼示例
- Javascript Math.LN2用法及代碼示例
- Javascript Math.SQRT2用法及代碼示例
- javascript Array length用法及代碼示例
注:本文由純淨天空篩選整理自Naman_Garg大神的英文原創作品 JavaScript | Location protocol Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。