맛집 여행 캠핑 일상 생활

HTML/CSS INPUT readOnly 효과 본문

HTML.CSS

HTML/CSS INPUT readOnly 효과

영은파더♥ 2017. 9. 14. 11:47

HTML/CSS INPUT readOnly 효과


<input type="text" name="testInput" id="testInput" />

위의 필드를 읽기전용으로 처리하는 방법


▶ javascript

document.getElementById('testInput').readOnly = true;


▶ jQuery

$('#testInput').attr("readonly", true);

▶ css

#testInput { pointer-events:none; }

실제 readonly 가 아닌 readonly 의 효과를 주는 것입니다.


Trackback : | Comments :