From e00f9bc2be854630636445a47280b7bc2c46450c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=85=B8=ED=98=84=EC=A3=BC?= <38433755+nohj0518@users.noreply.github.com> Date: Sun, 29 Sep 2024 22:30:01 +0900 Subject: [PATCH] =?UTF-8?q?[ko]=20document.scripts=20=EC=8B=A0=EA=B7=9C=20?= =?UTF-8?q?=EB=B2=88=EC=97=AD=20(#23661)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * [ko] document.scripts 신규 번역 * fix translate * fix translate --- files/ko/web/api/document/scripts/index.md | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 files/ko/web/api/document/scripts/index.md diff --git a/files/ko/web/api/document/scripts/index.md b/files/ko/web/api/document/scripts/index.md new file mode 100644 index 00000000000000..3d91925219767b --- /dev/null +++ b/files/ko/web/api/document/scripts/index.md @@ -0,0 +1,34 @@ +--- +title: Document.scripts +slug: Web/API/Document/scripts +l10n: + sourceCommit: 904f8c3d9c8a54e917f8db565bcfe58f976d859c +--- + +{{APIRef("DOM")}} + +**`scripts`** 는 {{domxref("Document")}}인터페이스의 속성으로 문서 중{{HTMLElement("script")}} 요소의 목록을 반환합니다. 반환되는 객체는 단일 {{domxref("HTMLCollection")}} 객체입니다. + +## 값 + +{{domxref("HTMLCollection")}}입니다. 이를 사용하여 목록의 모든 요소를 배열처럼 가져올 수 있습니다. + +## 예제 + +다음은 페이지 내 {{HTMLElement("script")}} 요소의 존재를 확인하는 예시입니다. + +```js +let scripts = document.scripts; + +if (scripts.length) { + alert("This page has scripts!"); +} +``` + +## 명세서 + +{{Specifications}} + +## 브라우저 호환성 + +{{Compat}}