개발자의 끄적끄적

[html/css] html select option 비활성화 하는 방법 본문

개발/html & css

[html/css] html select option 비활성화 하는 방법

효벨 2024. 12. 17. 01:00
728x90
반응형

[html/css] html select option 비활성화 하는 방법

 

 

html select 태그를 이용하다보면

 

특정 선택값이 선택되지 않게 막아야 하는,

 

즉 비활성화 처리를 해야하는 경우가 있습니다!

 

그럴때는 아래처럼 disabled 를 이용하시면 됩니다!

 

<select>
    <option value="1">Option 1</option>
    <option value="2" disabled>Option 2 (Disabled)</option>
    <option value="3">Option 3</option>
</select>

 

참고들 하세요!

반응형
Comments