Movatterモバイル変換


[0]ホーム

URL:


MDN Web Docs

Request: url property

BaselineWidely available

Note: This feature is available inWeb Workers.

Theurl read-only property of theRequestinterface contains the URL of the request.

Value

A string indicating the URL of the request.

Examples

In the following snippet, we create a new request using theRequest() constructor (for an image file in the same directory asthe script), then save the URL of the request in a variable:

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

Specifications

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

Browser compatibility

See also

Help improve MDN

Learn how to contribute.

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp