Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ko] html label element control 신규 번역 #21705

Merged
merged 10 commits into from
Jul 29, 2024
38 changes: 38 additions & 0 deletions files/ko/web/api/htmllabelelement/control/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
title: "HTMLLabelElement: control 속성"
short-title: control
slug: Web/API/HTMLLabelElement/control
l10n:
sourceCommit: d16706e4e930c57161d473287374a9286c663147
---

{{APIRef("HTML DOM")}}

읽기 전용인 **`HTMLLabelElement.control`** 속성은
{{HTMLElement("label")}} 요소와 연관되어 있는 컨트롤을 참조하여 반환합니다.
(폼에서는 {{domxref("HTMLElement")}} 타입 혹은 그 파생 객체입니다.)
만일 라벨이 컨트롤과 연관되어 있지 않다면 `null` 을 반환합니다.

## 값

{{domxref("HTMLElement")}} 파생 객체는 {{HTMLElement("label")}} 이 연관되어 있는 컨트롤을 나타내거나,
라벨이 단독 사용된 경우에는 `null` 입니다.

> [!NOTE]
> 만일 속성이 값을 가지고, {{domxref("HTMLLabelElement.htmlFor")}} 도 값이 있다면,
> {{domxref("HTMLLabelElement.htmlFor")}} 은 반드시 동일한 컨트롤을 참조해야 합니다.

## 명세서

{{Specifications}}

## 브라우저 호환성

{{Compat}}

## 같이 보기

- {{domxref("HTMLLabelElement")}}
- {{domxref("HTMLElement")}}
- {{HTMLElement("label")}}
- [HTML 폼 안내서](/ko/docs/Learn/Forms)