From 1ec0a929bcfe9c6b34425ddaed0a44b2ce0a5608 Mon Sep 17 00:00:00 2001 From: nohj0518 Date: Wed, 18 Sep 2024 21:35:41 +0900 Subject: [PATCH 1/3] =?UTF-8?q?[ko]=20document.scripts=20=EC=8B=A0?= =?UTF-8?q?=EA=B7=9C=20=EB=B2=88=EC=97=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- files/ko/web/api/document/scripts/index.md | 38 ++++++++++++++++++++++ 1 file changed, 38 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..0a8a3ebe841386 --- /dev/null +++ b/files/ko/web/api/document/scripts/index.md @@ -0,0 +1,38 @@ +--- +title: Document.scripts +slug: Web/API/Document/scripts +l10n: + sourceCommit: 904f8c3d9c8a54e917f8db565bcfe58f976d859c +--- + +{{APIRef("DOM")}} + +**`scripts`** 는 {{domxref("Document")}}인터페이스의 속성으로 문서 중{{HTMLElement("script")}} 요소의 목록을 반환합니다. 반환되는 객체는 단일 {{domxref("HTMLCollection")}} 객체입니다. + +## 값 + +```js +var scriptList = document.scripts; +``` + +반환된 {{HTMLElement("script")}} 리스트 객체는 {{domxref("HTMLCollection")}}입니다. 일반 배열로 사용하여 해당 요소에 액세스할 수 있습니다. + +## 예제 + +이 예제는 문서에 {{HTMLElement("script")}} 객체가 있음을 보여주기 위한 것입니다. + +```js +var scripts = document.scripts; + +if (scripts.length) { + alert("This page has scripts!"); +} +``` + +## 명세 + +{{Specifications}} + +## 브라우저 호환성 + +{{Compat}} From 03675479c8c699098d68304f060cd4cb07102f6d Mon Sep 17 00:00:00 2001 From: nohj0518 Date: Wed, 18 Sep 2024 22:13:32 +0900 Subject: [PATCH 2/3] fix translate --- files/ko/web/api/document/scripts/index.md | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/files/ko/web/api/document/scripts/index.md b/files/ko/web/api/document/scripts/index.md index 0a8a3ebe841386..95e8f0138472c3 100644 --- a/files/ko/web/api/document/scripts/index.md +++ b/files/ko/web/api/document/scripts/index.md @@ -11,25 +11,21 @@ l10n: ## 값 -```js -var scriptList = document.scripts; -``` - -반환된 {{HTMLElement("script")}} 리스트 객체는 {{domxref("HTMLCollection")}}입니다. 일반 배열로 사용하여 해당 요소에 액세스할 수 있습니다. +{{domxref("HTMLCollection")}}입니다. 이를 사용하여 목록의 모든 요소를 배열처럼 가져올 수 있습니다. ## 예제 이 예제는 문서에 {{HTMLElement("script")}} 객체가 있음을 보여주기 위한 것입니다. ```js -var scripts = document.scripts; +let scripts = document.scripts; if (scripts.length) { alert("This page has scripts!"); } ``` -## 명세 +## 명세서 {{Specifications}} From 3e525017f14b3235f8dc5b936a2a71e901fea5ea Mon Sep 17 00:00:00 2001 From: nohj0518 Date: Wed, 18 Sep 2024 22:17:11 +0900 Subject: [PATCH 3/3] fix translate --- files/ko/web/api/document/scripts/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/ko/web/api/document/scripts/index.md b/files/ko/web/api/document/scripts/index.md index 95e8f0138472c3..3d91925219767b 100644 --- a/files/ko/web/api/document/scripts/index.md +++ b/files/ko/web/api/document/scripts/index.md @@ -15,7 +15,7 @@ l10n: ## 예제 -이 예제는 문서에 {{HTMLElement("script")}} 객체가 있음을 보여주기 위한 것입니다. +다음은 페이지 내 {{HTMLElement("script")}} 요소의 존재를 확인하는 예시입니다. ```js let scripts = document.scripts;