선택된 사용 요소를 지정하는 속성은 페이지 로드 시 미리 선택됩니다. 속성은 -
와 함께 작동합니다.<input type = "checkbox"> <input type = "radio">.
예시
다음 코드를 실행하여 checked를 구현할 수 있습니다. HTML의 속성 -
<!DOCTYPE html> <html> <body> <p>Which sports do you like?</p> <form action = "" method = "get"> <input type = "checkbox" name = "vehicle" value = "football" checked> Football<br> <input type = "checkbox" name = "vehicle" value = "cricket" checked> Cricket<br> <input type = "checkbox" name = "vehicle" value = "hockey"> Hockey<br> <input type = "submit" value = "Submit"> </form> </body> </html>