This page was translated from English by the community. Learn more and join the MDN Web Docs community.

View in English Always switch to English

Boolean attribute (HTML)

HTML의 불리언 속성true 또는 false일 수 있는 속성입니다.

불리언 속성이 있으면 true이고, 없으면 false라는 점에 유의하세요.

다음은 HTML의 불리언 속성 checked의 예입니다.

html
<!-- 초기 렌더링 시, 아래 checkbox들이 체크된 상태로 표시됩니다. -->
<input type="checkbox" checked />
<input type="checkbox" checked="" />
<input type="checkbox" checked="true" />
<input type="checkbox" checked="false" />
<input type="checkbox" checked="any value" />

<!-- 아래 checkbox들는 체크된 상태로 표시되지 않습니다. -->
<input type="checkbox" />

같이 보기