336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
$("#file").change(
function(){
val = $(this).val().split("\\");
f_name = val[val.length-1]; //마지막 화일명
s_name = f_name.substring(f_name.length-4, f_name.length);//확장자빼오기
if(s_name.toLowerCase() == '.jpg'){//허용 확장자 비교
$("#img_file").html(f_name);
}else{
alert("jpg 파일만 선택해 주세요.");
return false;
}
});
<input type='file' name='file' id='file' />
<div id='img_file'></div>
'컴터 > jQuery' 카테고리의 다른 글
[jquery] parents, parentsUntil, prevAll, prevUntil, nextAll, nextUntil, closest, has, sliblings 테스트 (0) | 2012.10.11 |
---|---|
[jQuery] radio, checkbox 값 선택시 val() 활용법 (0) | 2009.03.25 |
[jQuery]form plugin - ajaxForm(options) 활용예제 (0) | 2009.03.24 |
[jQuery] 위아래로 따라다니는 퀵메뉴 (0) | 2009.03.23 |