Baseline Widely available *
O elemento HTML <script>
é usado para incluir ou referenciar um script executável.
Esse elemento inclui os atributos globais.
async
Um atributo booleano indicando que o navegador deve, se possÃvel, executar o script assÃncronamente.
Aviso: Esse atributo não deve ser utilizado se o atributo src
estiver ausente (ex. scripts embutidos). Se incluÃdo, nesse caso, ele não terá nenhum efeito.
Scripts inseridos dinamicamente (usando document.createElement
) são executados assincronamente por padrão, então para torná-lo uma execução sÃncrona (ex. executar scripts na ordem que eles foram carregados) atribua async=false
.
Veja Browser compatibility para notas no suporte do navegador. Veja também Scripts assÃncronos para asm.js.
crossorigin
Elementos script
passam o mÃnimo de informação para window.onerror
em scripts que não passem na checagem do CORS. Para permitir logs de erro para sites que usam domÃnios diferentes para arquivos estáticos, use esse atributo. Veja CORS settings attributes para uma explicação mais detalhada dos argumentos válidos.
defer
Esse atributo Boleano é usado para indicar ao navegador que o script deve ser executado depois que o documento tenha sido parseado, mas antes de disparar o evento DOMContentLoaded
Scripts com o atributo defer
vão impedir que o evento DOMContentLoaded seja disparado até que o script seja carregado e tenha terminado de ser avaliado.
Aviso: Esse atributo não deve ser usado se o atibuto src
estiver ausente (ex. scripts inline), nesse caso ele não vai ter efeito.
Para conseguir um efeito similar para scripts inseridos dinamicamente use async=false
. Scripts com o atributo defer
vão ser executados na ordem em que aparecem no document
.
integrity
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.
nomodule
Experimental
This Boolean attribute is set to indicate that the script should not be executed in browsers that support ES6 modules â in effect, this can be used to serve fallback scripts to older browsers that do not support modular JavaScript code.
src
This attribute specifies the URI of an external script; this can be used as an alternative to embedding a script directly within a document. If a script
element has a src
attribute specified, it should not have a script embedded inside its tags.
text
Like the textContent
attribute, this attribute sets the text content of the element. Unlike the textContent
attribute, however, this attribute is evaluated as executable code after the node is inserted into the DOM.
type
Indicates the type of script represented. The value of this attribute will be in one of the following categories:
src
attribute) code. JavaScript MIME types are listed in the specification.module
: For HTML5-complient browsers the code is treated as a JavaScript module. Processing of the script contents are not affected by the charset
and defer
attributes. For information on using module
, see ES6 in Depth: Modules. Experimentalsrc
attribute will be ignored.Note that in Firefox you can use advanced features such as let statements and other features in later JS versions, by using type=application/javascript;version=1.8
Não padrão . Beware, however, that as this is a non-standard feature, this will most likely break support for other browsers, in particular Chromium-based browsers.
For how to include exotic programming languages, read about Rosetta.
charset
Deprecated
If present, its value must be an ASCII case-insensitive match for "utf-8
". Both it's unnecessary to specify the charset
attribute, because documents must use UTF-8, and the script
element inherits its character encoding from the document.
language
Deprecated
Like the type
attribute, this attribute identifies the scripting language in use. Unlike the type
attribute, however, this attribute's possible values were never standardized. The type
attribute should be used instead.
Scripts without async
or defer
attributes, as well as inline scripts, are fetched and executed immediately, before the browser continues to parse the page.
The script should be served with the text/javascript
MIME type, but browsers are lenient and only block them if the script is served with an image type (image/*
), a video type (video/*
), an audio (audio/*
) type, or text/csv
. If the script is blocked, an error
is sent to the element, if not a success
event is sent.
<!-- HTML4 and (x)HTML -->
<script type="text/javascript" src="javascript.js"></script>
<!-- HTML5 -->
<script src="javascript.js"></script>
Specifications Compatibilidade com navegadores See also
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4