Notice
목록삭제 (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