最新的Web開發教程
 

Anchor protocol Property

<錨對象

返回鏈路的協議:

var x = document.getElementById("myAnchor").protocol;

x的結果將是:

http:
試一試»

定義和用法

該協議屬性設置或返回的協議部分href屬性值。

該協議為標準,規定數據是如何在計算機之間傳輸。


瀏覽器支持

屬性
protocol

句法

返回協議屬性:

anchorObject .protocol

設置協議屬性:

anchorObject .protocol= protocol

屬性值

描述
protocol 指定URL的協議。 可能的值:
  • 文件:
  • FTP:
  • HTTP:
  • HTTPS:
  • 郵寄地址:
  • 等等..

技術細節

返回值: 一個字符串,表示URL的協議部分,包括結腸符號(:)

更多示例

更改鏈接的協議:

document.getElementById("myAnchor").protocol = "mailto:";
試一試»

相關頁面

JavaScript的參考: location.protocol Property


<錨對象