밥줄/HTML_CSS
Input 태그에 text 직접입력 못하게 하기(disabled//readOnly 추가)
꼬꼬리코
2009. 8. 28. 00:42
onkeydown="event.returnValue=false;
추가하기
------------------------------------------------------
1. 비활성화 시키기
form.name.disabled = true;
2. 읽게만 하기
form.name.readOnly = true;
중요한건 readOnly 에서 'O' 가 대문자 여야 한다!
* 20110721 추가