--- title: HTMLHyperlinkElementUtils.protocol slug: Web/API/HTMLHyperlinkElementUtils/protocol tags: - API - Experimental - HTMLHyperlinkElementUtils - Property - URL API translation_of: Web/API/HTMLHyperlinkElementUtils/protocol ---
{{ApiRef("URL API")}}
HTMLHyperlinkElementUtils
.protocol
プロパティは、最後の ':'
を含む URL のプロトコルスキームを表す {{domxref("USVString")}} です。
string = object.protocol; object.protocol = string;
// <a id="myAnchor" href="https://developer.mozilla.org/en-US/HTMLHyperlinkElementUtils.protocol"> 要素がドキュメントにあるとします var anchor = document.getElementById("myAnchor"); var result = anchor.protocol; // 戻り値: 'https:'
仕様 | 状態 | コメント |
---|---|---|
{{SpecName('HTML WHATWG', '#dom-hyperlink-protocol', 'HTMLHyperlinkElementUtils.protocol')}} | {{Spec2('HTML WHATWG')}} | 初期定義 |
{{Compat("api.HTMLHyperlinkElementUtils.protocol")}}