728x90 반응형 HTML/JS & jQuery3 [jQuery] input type="file" 이미지 미리보기 input type="file" 이미지 미리보기 가끔 파일첨부 시 이미지일 경우 미리보기해야 할 경우가 있다.아래 코드 처럼 로컬의 이미지를 미리보기할 수 있다. 2025. 2. 18. [JS] 문자열 공백 제거하기 trim 문자열 앞뒤 공백 제거var txt = " Hello World! ";txt = txt.trim();//결과"Hello World!"문자열의 앞뒤 공백만 삭제합니다. replace 문자열의 첫 번째 문자만 변경var txt = " Hello World! ";txt = txt.replace(" ", "");//결과"Hello World! "replace는 변경하고자 하는 문자중 하나만 변경됩니다. replaceAll 문자열의 전체 문자 변경var txt = " Hello World! ";txt = txt.replaceAll(" ", "");//결과"HelloWorld!"자바스크립트 버전업 되면서 새로 추가된 메소드입니다.예전엔 replace에서 정규식으로 변경하였으나 이제는 간단하게... 2025. 2. 12. [jQuery] jquery live, bind, delegate를 on 대체 live() 함수가 jquery 1.9.x부터 deprecated 되면서 live, bind, delegate함수를 on함수로 마이그레이션 //Bind$("#요소").bind("click", function(e){});$("#요소").on("click", function(e){}); // Live$("#요소").live("click", function(e){});$(document).on("click", ""#요소"", function(e){}); //Delegate$("#요소").delegate("a", "click", function(e){});$("#요소").on("click", "a", function(e){}); 2019. 3. 5. 이전 1 다음 728x90 반응형