Skip to content

Commit

Permalink
[ko] document.scripts 신규 번역 (mdn#23661)
Browse files Browse the repository at this point in the history
* [ko] document.scripts 신규 번역

* fix translate

* fix translate
  • Loading branch information
nohj0518 authored and sora32127 committed Oct 6, 2024
1 parent 69595f4 commit e00f9bc
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions files/ko/web/api/document/scripts/index.md
Original file line number Diff line number Diff line change
@@ -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}}

0 comments on commit e00f9bc

Please sign in to comment.