Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. TrustedScriptURL

TrustedScriptURL

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

Note: This feature is available inWeb Workers.

TheTrustedScriptURL interface of theTrusted Types API represents a string that a developer can insert into aninjection sink that will parse it as a URL of an external script. These objects are created viaTrustedTypePolicy.createScriptURL() and therefore have no constructor.

The value of aTrustedScriptURL object is set when the object is created and cannot be changed by JavaScript as there is no setter exposed.

Instance methods

TrustedScriptURL.toJSON()

Returns a JSON representation of the stored data.

TrustedScriptURL.toString()

A string containing the sanitized URL.

Examples

The constantsanitized is an object created via a Trusted Types policy.

js
const sanitized = scriptPolicy.createScriptURL(  "https://example.com/my-script.js",);console.log(sanitized); /* a TrustedScriptURL object */

Specifications

Specification
Trusted Types
# trused-script-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