선택된 사용 HTML에서 페이지가 로드될 때 옵션이 미리 선택되어야 함을 지정하는 속성입니다. 다음 코드를 실행하여 selected를 구현할 수 있습니다. 속성 -
예시
<!DOCTYPE html> <html> <head> <title>HTML selected attribute</title> </head> <body> <p>Here's the list of subjects. Select any one:</p> <form> <select name = "dropdown"> <option value = "Computer Architecture" selected>Computer Architecture</option> <option value = "Java">Java</option> <option value = "Discrete Mathematics">Discrete Mathematics</option> </select> </form> </body> </html>