잡담소장소

file 파일 사이즈 확인 및 삭제 본문

Study ;3

file 파일 사이즈 확인 및 삭제

유부뽀 2013. 6. 17. 11:55

file size 가져오기

<input type="file" id="attachment">
$("#attachment").change( function() {
 alert( this.files[0].size );
});
 
 선택된 파일 삭제하기
function clear_file()
{
 var file = $("#attacthment");
 file.replaceWith( file = file.clone( true ) );
}
http://stackoverflow.com/questions/1043957/clearing-input-type-file-using-jquery 에서 발췌


* 겸사겸사 bit 사이즈 변환 사이트

http://www.flightpedia.org/convert/bit-and-byte.html


file size를 가져올때 bit 단위로 가져오므로 제한두고자 하는 사이즈의 bit로 변환하기에 매우 유용 ㅎㅎ


* 선택된 파일 삭제하는 함수는 버튼 하나 hidden으로 만들어서 파일이 첨부되면 show() 해주고 삭제해주는 함수에서 hide() 해주면 좋다

반응형

'Study ;3' 카테고리의 다른 글

javascript date  (0) 2013.07.02
div 나누는 방법  (0) 2013.06.18
datepicker 범위 선택  (1) 2013.06.14
css style 메모  (0) 2013.06.03
vi 에서의 치환  (0) 2013.02.07
Comments