--- title: Document.scripts slug: Web/API/Document/scripts translation_of: Web/API/Document/scripts ---
{{APIRef("DOM")}}

Возвращает список элементов {{HTMLElement("script")}} в документ. Возвращаемый объект явлеется {{domxref("HTMLCollection")}}.

Syntax

var scriptList = document.scripts;

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

Example

Этот пример показывает есть ли на старинице элементы {{HTMLElement("script")}}.

var scripts = document.scripts;

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

Browser compatibility

{{CompatibilityTable}}
Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support {{CompatVersionUnknown}} {{CompatGeckoDesktop("9.0")}} 4.0 {{CompatVersionUnknown}} {{CompatVersionUnknown}}
Feature Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support {{CompatVersionUnknown}} {{CompatGeckoMobile("9.0")}} {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatVersionUnknown}}

Specifications

Specification Status Comment
{{SpecName('HTML WHATWG', '#dom-document-scripts', 'Document.scripts')}} {{ Spec2('HTML WHATWG') }}