--- title: URL.protocol slug: Web/API/URL/protocol tags: - API - Property - Protocol - Reference - URL translation_of: Web/API/URL/protocol ---
{{ApiRef("URL API")}}

{{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")}}

関連情報