Request.url

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since March 2017.

urlRequest インターフェイスの読み取り専用プロパティで、リクエストの URL を保持します。

リクエストの URL を示す文字列です。

次のスニペットでは、 Request.Request() コンストラクターを使って(スクリプトと同じディレクトリーにある画像ファイルのための)新しいリクエストを生成してから、変数にリクエストの URL を保存しています。

js
const myRequest = new Request("flowers.jpg");
const myURL = myRequest.url; // "https://github.com/mdn/dom-examples/tree/main/fetch/fetch-request/flowers.jpg"

仕様書

Specification
Fetch Standard
# ref-for-dom-request-url③

ブラウザーの互換性

BCD tables only load in the browser

関連項目