"HTML input readonly 속성"의 두 판 사이의 차이

28번째 줄: 28번째 줄:
</source>
</source>
*예제: http://jmnote.com/html5/input_readonly2.php
*예제: http://jmnote.com/html5/input_readonly2.php
==같이 보기==
*[[HTML input 태그]]


==참고 자료==
==참고 자료==

2014년 5월 11일 (일) 01:44 판

HTML <input> readonly 속성
Input readonly 속성
input text 변경불가
input text 읽기전용

1 기초 예제 (속성)

<!DOCTYPE html>
<meta charset='utf-8'>
<form action="form_action.asp">
변경불가 <input type="text" name="country" value="대한민국" readonly="readonly" /><br>
변경가능 <input type="text" name="city" value="서울" />
</form>

2 자바스크립트로 제어

<!DOCTYPE html>
<meta charset='utf-8'>
<form name='myform' action="form_action.asp">
변경불가 <input type="text" name="country" value="대한민국" /><br>
변경가능 <input type="text" name="city" value="서울" />
</form>
<script>
myform.country.readOnly = true;
</script>

3 같이 보기

4 참고 자료

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}