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
- 추천
- 공략
- 영화
- 시사회
- 강추
- Monument Valley
- 레고
- 아이러브니키
- 게임
- Pink
- 모뉴먼트
- great forest
- 아이패드
- 맛집
- jQuery
- 유료
- goblin sword
- 후기
- 카이로소프트
- 감상
- 잡담
- JavaScript
- 가사
- 일상
Archives
- Today
- Total
목록삭제 (2)
잡담소장소
php로 <div> 태그 제거
에디터를 이용해 등록된 글에 div 태그가 삽입되는 까닭에 스타일이 먹지 않는 현상이 발생해서 div 태그 삭제나같은 경우는 닫는 태그는 로 치환하도록 했음 'ㅅ' $patterns = array(); $patterns[0] = '/]*>/'; $patterns[1] = '//'; $replacements = array(); $replacements[2] = ''; $replacements[1] = ''; echo preg_replace($patterns, $replacements, $html)Stack Overflow 에서 발췌
Study ;3
2013. 9. 25. 16:57
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