Struct html_tags::ScriptOwned
source · pub struct ScriptOwned {Show 28 fields
pub accesskey: Option<String>,
pub async_: Option<String>,
pub autocapitalize: Option<String>,
pub autofocus: Option<bool>,
pub blocking: Option<String>,
pub class: Option<String>,
pub contenteditable: Option<String>,
pub contextmenu: Option<String>,
pub crossorigin: Option<String>,
pub data: Option<BTreeMap<String, String>>,
pub defer: Option<String>,
pub dir: Option<String>,
pub draggable: Option<String>,
pub enterkeyhint: Option<String>,
pub exportparts: Option<String>,
pub extra: Option<BTreeMap<String, String>>,
pub fetchpriority: Option<String>,
pub hidden: Option<bool>,
pub id: Option<String>,
pub inert: Option<String>,
pub inputmode: Option<String>,
pub integrity: Option<String>,
pub is: Option<String>,
pub nomodule: Option<String>,
pub nonce: Option<String>,
pub referrerpolicy: Option<String>,
pub src: Option<String>,
pub type_: Option<String>,
}
Expand description
The <script>
HTML element is used to embed executable code or data; this is typically used to embed or refer to JavaScript code. The <script>
element can also be used with other languages, such as WebGL’s GLSL shader programming language and JSON.
More information: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/script
Fields§
§accesskey: Option<String>
Provides a hint for generating a keyboard shortcut for the current element. This attribute consists of a space-separated list of characters. The browser should use the first one that exists on the computer keyboard layout.
async_: Option<String>
For classic scripts, if the async
attribute is present, then the classic script will be fetched in parallel to parsing and evaluated as soon as it is available.
For module scripts, if the async
attribute is present then the scripts and all their dependencies will be executed in the defer queue, therefore they will get fetched in parallel to parsing and evaluated as soon as they are available.
This attribute allows the elimination of parser-blocking JavaScript where the browser would have to load and evaluate scripts before continuing to parse. defer
has a similar effect in this case.
This is a boolean attribute: the presence of a boolean attribute on an element represents the true value, and the absence of the attribute represents the false value.
See Browser compatibility for notes on browser support. See also Async scripts for asm.js.
autocapitalize: Option<String>
Controls whether and how text input is automatically capitalized as it is entered/edited by the user. It can have the following values:
off
ornone
, no autocapitalization is applied (all letters default to lowercase)on
orsentences
, the first letter of each sentence defaults to a capital letter; all other letters default to lowercasewords
, the first letter of each word defaults to a capital letter; all other letters default to lowercasecharacters
, all letters should default to uppercase
autofocus: Option<bool>
Indicates that an element is to be focused on page load, or as soon as the <dialog>
it is part of is displayed. This attribute is a boolean, initially false.
blocking: Option<String>
This attribute explicitly indicates that certain operations should be blocked on the fetching of the script. The operations that are to be blocked must be a space-separated list of blocking attributes listed below.
render
: The rendering of content on the screen is blocked.
class: Option<String>
A space-separated list of the classes of the element. Classes allow CSS and JavaScript to select and access specific elements via the class selectors or functions like the method Document.getElementsByClassName()
.
contenteditable: Option<String>
An enumerated attribute indicating if the element should be editable by the user. If so, the browser modifies its widget to allow editing. The attribute must take one of the following values:
true
or the empty string, which indicates that the element must be editable;false
, which indicates that the element must not be editable.
crossorigin: Option<String>
Normal script
elements pass minimal information to the window.onerror
for scripts which do not pass the standard CORS checks. To allow error logging for sites which use a separate domain for static media, use this attribute. See CORS settings attributes for a more descriptive explanation of its valid arguments.
data: Option<BTreeMap<String, String>>
Forms a class of attributes, called custom data attributes, that allow proprietary information to be exchanged between the HTML and its DOM representation that may be used by scripts. All such custom data are available via the HTMLElement
interface of the element the attribute is set on. The HTMLElement.dataset
property gives access to them.
defer: Option<String>
This Boolean attribute is set to indicate to a browser that the script is meant to be executed after the document has been parsed, but before firing DOMContentLoaded
.
Scripts with the defer
attribute will prevent the DOMContentLoaded
event from firing until the script has loaded and finished evaluating.
Warning: This attribute must not be used if the src
attribute is absent (i.e. for inline scripts), in this case it would have no effect.
The defer
attribute has no effect on module scripts — they defer by default.
Scripts with the defer
attribute will execute in the order in which they appear in the document.
This attribute allows the elimination of parser-blocking JavaScript where the browser would have to load and evaluate scripts before continuing to parse. async
has a similar effect in this case.
dir: Option<String>
An enumerated attribute indicating the directionality of the element's text. It can have the following values:
ltr
, which means left to right and is to be used for languages that are written from the left to the right (like English);rtl
, which means right to left and is to be used for languages that are written from the right to the left (like Arabic);auto
, which lets the user agent decide. It uses a basic algorithm as it parses the characters inside the element until it finds a character with a strong directionality, then it applies that directionality to the whole element.
draggable: Option<String>
An enumerated attribute indicating whether the element can be dragged, using the Drag and Drop API. It can have the following values:
true
, which indicates that the element may be draggedfalse
, which indicates that the element may not be dragged.
enterkeyhint: Option<String>
Hints what action label (or icon) to present for the enter key on virtual keyboards.
exportparts: Option<String>
Used to transitively export shadow parts from a nested shadow tree into a containing light tree.
extra: Option<BTreeMap<String, String>>
/// Extra attributes of the element. This is a map of attribute names to their values, and the attribute names are in lowercase.
fetchpriority: Option<String>
Provides a hint of the relative priority to use when fetching an external script. Allowed values:
high
-
Signals a high-priority fetch relative to other external scripts.
low
-
Signals a low-priority fetch relative to other external scripts.
auto
-
Default: Signals automatic determination of fetch priority relative to other external scripts.
An enumerated attribute indicating that the element is not yet, or is no longer, relevant. For example, it can be used to hide elements of the page that can't be used until the login process has been completed. The browser won't render such elements. This attribute must not be used to hide content that could legitimately be shown.
id: Option<String>
Defines a unique identifier (ID) which must be unique in the whole document. Its purpose is to identify the element when linking (using a fragment identifier), scripting, or styling (with CSS).
inert: Option<String>
A boolean value that makes the browser disregard user input events for the element. Useful when click events are present.
inputmode: Option<String>
Provides a hint to browsers about the type of virtual keyboard configuration to use when editing this element or its contents. Used primarily on <input>
elements, but is usable on any element while in contenteditable
mode.
integrity: Option<String>
This attribute contains inline metadata that a user agent can use to verify that a fetched resource has been delivered free of unexpected manipulation. See Subresource Integrity.
is: Option<String>
Allows you to specify that a standard HTML element should behave like a registered custom built-in element (see Using custom elements for more details).
nomodule: Option<String>
This Boolean attribute is set to indicate that the script should not be executed in browsers that support ES modules — in effect, this can be used to serve fallback scripts to older browsers that do not support modular JavaScript code.
nonce: Option<String>
A cryptographic nonce (number used once) to allow scripts in a script-src Content-Security-Policy. The server must generate a unique nonce value each time it transmits a policy. It is critical to provide a nonce that cannot be guessed as bypassing a resource's policy is otherwise trivial.
referrerpolicy: Option<String>
Indicates which referrer to send when fetching the script, or resources fetched by the script:
no-referrer
: TheReferer
header will not be sent.no-referrer-when-downgrade
: TheReferer
header will not be sent to origins without TLS (HTTPS).origin
: The sent referrer will be limited to the origin of the referring page: its scheme, host, and port.origin-when-cross-origin
: The referrer sent to other origins will be limited to the scheme, the host, and the port. Navigations on the same origin will still include the path.same-origin
: A referrer will be sent for same origin, but cross-origin requests will contain no referrer information.strict-origin
: Only send the origin of the document as the referrer when the protocol security level stays the same (HTTPS→HTTPS), but don't send it to a less secure destination (HTTPS→HTTP).strict-origin-when-cross-origin
(default): Send a full URL when performing a same-origin request, only send the origin when the protocol security level stays the same (HTTPS→HTTPS), and send no header to a less secure destination (HTTPS→HTTP).unsafe-url
: The referrer will include the origin and the path (but not the fragment, password, or username). This value is unsafe, because it leaks origins and paths from TLS-protected resources to insecure origins.
Note: An empty string value (""
) is both the default value, and a fallback value if referrerpolicy
is not supported. If referrerpolicy
is not explicitly specified on the <script>
element, it will adopt a higher-level referrer policy, i.e. one set on the whole document or domain. If a higher-level policy is not available, the empty string is treated as being equivalent to strict-origin-when-cross-origin
.
src: Option<String>
This attribute specifies the URI of an external script; this can be used as an alternative to embedding a script directly within a document.
type_: Option<String>
This attribute indicates the type of script represented. The value of this attribute will be one of the following:
- Attribute is not set (default), an empty string, or a JavaScript MIME type
-
Indicates that the script is a "classic script", containing JavaScript code. Authors are encouraged to omit the attribute if the script refers to JavaScript code rather than specify a MIME type. JavaScript MIME types are listed in the IANA media types specification.
module
-
This value causes the code to be treated as a JavaScript module. The processing of the script contents is deferred. The
charset
anddefer
attributes have no effect. For information on usingmodule
, see our JavaScript modules guide. Unlike classic scripts, module scripts require the use of the CORS protocol for cross-origin fetching. importmap
-
This value indicates that the body of the element contains an import map. The import map is a JSON object that developers can use to control how the browser resolves module specifiers when importing JavaScript modules.
- Any other value
-
The embedded content is treated as a data block, and won't be processed by the browser. Developers must use a valid MIME type that is not a JavaScript MIME type to denote data blocks. All of the other attributes will be ignored, including the
src
attribute.
Implementations§
Trait Implementations§
source§impl Clone for ScriptOwned
impl Clone for ScriptOwned
source§fn clone(&self) -> ScriptOwned
fn clone(&self) -> ScriptOwned
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ScriptOwned
impl Debug for ScriptOwned
source§impl Default for ScriptOwned
impl Default for ScriptOwned
source§fn default() -> ScriptOwned
fn default() -> ScriptOwned
source§impl Ord for ScriptOwned
impl Ord for ScriptOwned
source§fn cmp(&self, other: &ScriptOwned) -> Ordering
fn cmp(&self, other: &ScriptOwned) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
source§impl PartialEq<ScriptOwned> for ScriptOwned
impl PartialEq<ScriptOwned> for ScriptOwned
source§fn eq(&self, other: &ScriptOwned) -> bool
fn eq(&self, other: &ScriptOwned) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<ScriptOwned> for ScriptOwned
impl PartialOrd<ScriptOwned> for ScriptOwned
source§fn partial_cmp(&self, other: &ScriptOwned) -> Option<Ordering>
fn partial_cmp(&self, other: &ScriptOwned) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read more