Computer >> 컴퓨터 >  >> 프로그램 작성 >> HTML

페이지가 HTML로 로드될 때 옵션이 미리 선택되도록 지정하는 방법은 무엇입니까?


선택된 사용 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>