<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>
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 |
댓글 영역