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 | 31 |
Tags
- 레고
- Monument
- 감상
- 시사회
- 가사
- php
- 추천
- 아이폰
- 영화
- jQuery
- 카이로소프트
- JavaScript
- 게임
- Pink
- 아이러브니키
- 아이패드
- 후기
- 모뉴먼트 밸리
- 아이폰게임
- 공략
- 모뉴먼트
- 일상
- 맛집
- 강추
- Monument Valley
- 잡담
- 핑크
- 유료
- goblin sword
- great forest
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