--- title: URL.protocol slug: Web/API/URL/protocol tags: - API - Property - Protocol - Reference - URL translation_of: Web/API/URL/protocol ---
{{domxref("URL")}} インターフェイスの protocol
プロパティは、最後の ':'
を含む URL のプロトコルスキームを表す {{domxref("USVString")}} です。
{{AvailableInWorkers}}
string = object.protocol; object.protocol = string;
{{domxref("USVString")}}。
var url = new URL('https://developer.mozilla.org/en-US/docs/Web/API/URL/protocol'); var result = url.protocol; // 戻り値: "https:"
仕様 | 状態 | コメント |
---|---|---|
{{SpecName('URL', '#dom-url-protocol', 'protocol')}} | {{Spec2('URL')}} | 初期定義 |
{{Compat("api.URL.protocol")}}