Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Document.scripts

Перевод не завершен. Пожалуйста, помогите перевести эту статью с английского.

Возвращает список элементов <script> в документ. Возвращаемый объект явлеется HTMLCollection.

Syntax

var scriptList = document.scripts;

Возвращаемый scriptList является HTMLCollection. Вы можете использовать его как массив для получения всех элементов в списке.

Example

Этот пример показывает есть ли на старинице элементы <script>.

var scripts = document.scripts;

if (scripts.length) {
  alert("This page has scripts!");
}

Browser compatibility

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support (Да) 9.0 (9.0) 4.0 (Да) (Да)
Feature Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support (Да) 9.0 (9.0) (Да) (Да) (Да)

Specifications

Specification Status Comment
WHATWG HTML Living Standard
Определение 'Document.scripts' в этой спецификации.
Живой стандарт  

Метки документа и участники

 Внесли вклад в эту страницу: fondad
 Обновлялась последний раз: fondad,