Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- jQuery
- 공략
- 잡담
- 레고
- 일상
- 후기
- Monument
- 영화
- 유료
- JavaScript
- 모뉴먼트
- 아이패드
- 시사회
- 모뉴먼트 밸리
- 맛집
- 핑크
- 카이로소프트
- 강추
- 아이폰
- 아이폰게임
- 가사
- 게임
- goblin sword
- 아이러브니키
- great forest
- Monument Valley
- Pink
- 감상
- php
- 추천
Archives
- Today
- Total
목록변환 (2)
잡담소장소
헤더를 통한 엑셀 export 할 때 숫자를 문자열로 변환
숫자가 들어가 있는 곳에 {mso-number-format:'\@'} 해주면 됨.ex) .txt {mso-number-format: \@;} 01012341212 이렇게 하면 엑셀로 보냈을 때 0이 사라지는 현상을 극뽁-_-할수있다.
Study ;3
2013. 10. 7. 14:56
file 파일 사이즈 확인 및 삭제
file size 가져오기 $("#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 단위로 가져오므로 제한두고자..
Study ;3
2013. 6. 17. 11:55