2012. 4. 25. 13:00ㆍNOTE/IT
TEXTAREA안에 기본 문자 삽입
<textarea rows=20 cols=80 name="content" class=box>
###### 아래정보를 꼭 입력하여 주세요 ######
1.부서명:
2.SDWT명:
3.수정/보안/오류/추가 요청시 KIS위치:
4.개발의뢰내용:
</textarea>
=============================================
<script language="vbscript">
sub memo_onclick
if aaa.memo_content.value="" then
alert("내용을 입력하세요!")
document.aaa.memo_content.focus
else
leng=document.aaa.memo_content.value '길이 파악하기
result=len(leng)
if result > 25 then
alert "25자를 넘으셨군여~ 편집 해주세요
~ ^^;"
else
aaa.submit
end if
end if
end sub
</script>
'NOTE > IT' 카테고리의 다른 글
[WINDOWS]DLL,OCX 등 시스템에 수동 등록(regsvr32) (0) | 2012.04.25 |
---|---|
[VB]함수들 (0) | 2012.04.25 |
FTP 자동 로그인 스크립트 (0) | 2012.04.25 |
[JAVA SCRIPT]팁 모음 (0) | 2012.04.25 |
[PHP]문자열을 정해진 길이로 나누어 배열 만들기 (0) | 2012.04.25 |