This page was translated from English by the community.Learn more and join the MDN Web Docs community.
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" />