s

첨부파일 확장자 체크 [정규식]

파일 첨부 시 첨부파일 확장자가 이미지 파일인지 체크 하는 스크립트 입니다.

<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>

|

댓글 3개

댓글을 작성하시려면 로그인이 필요합니다.

팁게시판

디자인과 관련된 유용한 정보를 공유하세요. 질문은 상단의 QA에서 해주시기 바랍니다.

+
제목 글쓴이 날짜 조회
12년 전 조회 3,754
12년 전 조회 3,154
12년 전 조회 4,004
12년 전 조회 4,386
12년 전 조회 1,620
12년 전 조회 2,747
12년 전 조회 2,749
12년 전 조회 1,277
12년 전 조회 1,302
12년 전 조회 8,439
12년 전 조회 1,555
12년 전 조회 3,789
12년 전 조회 6,364
12년 전 조회 1,580
12년 전 조회 1,170
12년 전 조회 1,340
12년 전 조회 3,313
12년 전 조회 1,096
12년 전 조회 1,848
12년 전 조회 1,270
12년 전 조회 929
12년 전 조회 1,432
12년 전 조회 2,121
12년 전 조회 1,408
12년 전 조회 1,284