본문 바로가기
728x90

Develop158

Javascript & jQuery 페이지 로드 후 이벤트 실행하는 방법들의 차이점 안녕하세요. 은은한 개발자입니다. // 1번 $(document).ready(function(){}); // 2번 $(function(){}); // 3번 window.onload = function(){}; Javascript 와 jQuery 를 사용하다보면 페이지가 로딩 되었을 때 이벤트를 사용하기 위해 위와 같은 이벤트 핸들러를 작성한 것을 보거나 사용하게 된다. 이 3가지 경우의 차이점은 아래와 같다. // 1번 $(document).ready(function(){}); // 2번 $(function(){}); 1번과 2번의 경우 jQuery 에서 사용하는 방식이고, 소스와 상관없이 DOM만 생성되어도 호출이 된다. 즉. 이미지와 같은 리소스를 요구하는 페이지일 경우 이미지의 로딩의 완료에 상관없.. 2020. 2. 23.
jQuery IntersectionObserver 안녕하세요. 은은한 개발자입니다. 번호 제목 작성자 작성일 조회수 게시글 리스트 제목 테스터 2018-10-24 13:36:20 1000 2020. 2. 23.
JavaScript 금액 콤마 넣기, 풀기 안녕하세요. 은은한 개발자입니다. 정규식을 활용해 Javascript 로 금액에 숫자 포맷을 설정해줄 수 있는 방법에 대해 알아보도록 하겠습니다. // 콤마넣기 function comma(str) { str = String(str); return str.replace(/(\d)(?=(?:\d{3})+(?!\d))/g, '$1,'); } // 콤마풀기 function uncomma(str) { str = String(str); return str.replace(/[^\d]+/g, ''); } 2020. 2. 23.
Javascript 요소 접근 방법 안녕하세요. 은은한 개발자입니다. 1. form의 element에 name으로 접근 접근 방법 브라우저 document.form1.txt1.value // IE, SF, FF, Chrome document.getElementsByName('txt1')[0].value // IE, SF, FF, Chrome document.getElementsByTagName('input').item('txt1',0).value // IE, SF, FF, Chrome document.getElementById('txt1').value // IE document.form1.namedItem('txt1').value // IE document.form1.elements['txt1'].value // IE, SF, FF, Ch.. 2020. 2. 23.
Docker 도커 | Ubuntu(우분투) 리눅스 Python(파이썬) 개발환경 구축 Ubuntu + Python 개발환경을 만들기 위해 Docker를 활요해 볼 계획이다. 1. Ubuntu(우분투) 리눅스 이미지 받기 먼저 아래와 같이 이미지 확인을 먼저 해본다. D:\Docker>docker images REPOSITORY TAG IMAGE ID CREATED SIZE 갖고 있는 이미지가 없기 때문에 pull 명령어로 ubuntu 리눅스 이미지를 받았다. 특정 버전으로 설정해 pull 할수도 있지만 최신 버전으로 세팅하고자 태그를 달지는 않았다. D:\Docker>docker pull ubuntu Using default tag: latest latest: Pulling from library/ubuntu 5c939e3a4d10: Pull complete c63719cdbe7a: Pu.. 2020. 2. 5.
Docker 도커 | 설치 에러 error during connect: Get http://%2F%2F.%2Fpipe%2Fdocker_engine/v1.40/images/json: open //./pipe/docker_engine: The system cannot find the file specified. In the default daemon configuration on Windows, the docker client mu.. 도커를 설치하고 이미지 목록을 확인하려고 docker images 명령어를 실행했는데 아래와 같은 에러가 발생했습니다. error during connect: Get http://%2F%2F.%2Fpipe%2Fdocker_engine/v1.40/images/json: open //./pipe/docker_engine: The system cannot find the file specified. In the default daemon configuration on Windows, the docker client must be run elevated to connect. This error may also indicate that the docker daemon is not running. 확인해보니 제가 .. 2020. 2. 3.
728x90