반응형 전체 글438 새 창 띄우기 window.open을 이용해서 창을 열때 여러 옵션들을 줄 수 있습니다. window.open(주소, 창, 옵션); 2014. 5. 14. 세자리마다 콤마 /*세자리 콤마 add*/ function number_format(str){ // 세자리 마다 컴마 찍기 str = str + ''; var comma = new Array(); comma = str.split(""); str = ""; var temp2=0; for(i = comma.length-1 ; i >= 0 ; i--){ str += comma[i]; temp2++; if(temp2 > 2){ str += ','; temp2 = 0; } } comma = new Array(); comma = str.split(""); str = ""; for(j = comma.length-1 ; j >= 0 ; j--){ str += comma[j]; } if(str.substring(0,1) == ',')s.. 2014. 5. 14. PHP 보안 적용 소스 step1http://www.dreamhost.com/dreamscape/2013/05/22/php-security-user-validation-and-sanitization-for-the-beginner/ step2http://www.dreamhost.com/dreamscape/2013/05/29/part-2-of-php-security-user-validation-and-sanitization-for-beginners/ 2014. 4. 21. 코딩을 속도를 높여주는 Zencoding 젠코딩(EditPlus)http://blog.naver.com/3736228?Redirect=Log&logNo=130188491767 젠코딩(드림위버)http://tokyomari.blog.me/175970617 젠코딩 사용법 문서http://docs.emmet.io/cheat-sheet/ 2014. 4. 10. 생활코딩 Java 영상 강좌 http://www.youtube.com/playlist?list=PLuHgQVnccGMCeAy-2-llhw3nWoQKUvQck 2014. 4. 8. 어느 개발자 블로그의 개발과 관련된 글 읽으러가기 2014. 4. 7. 이전 1 ··· 9 10 11 12 13 14 15 ··· 73 다음 반응형