상세 컨텐츠

본문 제목

정규식으로 파일확장자체크

Front-End

by Array 2010. 5. 28. 10:41

본문

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
<title>확장자 검사</title>
<script language=javascript>

 

function checkExt()
{

    var IMG_FORMAT = "\\.(bmp|gif|jpg|jpeg|png)$";

 

    if((new RegExp(IMG_FORMAT, "i")).test(document.form1.text1.value)) return true;

 

    alert("이미지 파일만 첨부하실 수 있습니다.   ");
    return false;
}

 

</script>
</head>
<body>
<form name=form1 method=post onsubmit="return checkExt()"

    encType="multipart/form-data">
<input type=file name=text1>
<input type=submit>
</form>
</body>
</html>

'Front-End' 카테고리의 다른 글

History 객체 프로퍼티 메쏘드  (0) 2010.05.28
예외처리  (0) 2010.05.28
Png투명만들기  (0) 2010.05.25
HTML/CSS 링크  (0) 2010.05.11
jQuery  (0) 2010.05.09

관련글 더보기

댓글 영역