html 8

What is “.el” in relationship to JavaScript/HTML/jQuery?

https://stackoverflow.com/questions/10507100/what-is-el-in-relationship-to-javascript-html-jquery el is just an identifier and it refers to an element, a DOM element, which is a convention in that library. el is a function that's been placed on the $ object, and can be invoked to generate DOM elements 내가 찾던건 이것 https://angular.io/api/core/ElementRef constructor에서 el을 선언하면 현재 component에서 사용하는 ele..

javascript & jQuery 2018.03.14

[CSS] Position

CSS에서 Position 위치를 지정할 수 있는 4가지 방법 기본적으로 왼쪽에서 오른쪽 / 위에서 아래의 순서로 배치됨 1. float : left,rightfloat은 위로 띄우는것 그럼 그 다음에 있던 것들이 치고 올라오겠지자기가 출력될 자리에서 공중에 뜨는 것 div 경우 float를 사용할때width,height를 지정하지 않으면 content의 내용에 따라 크기가 나타나게됨 2. position:absolute 조상(부모x)을 기준으로 상대적인 위치를 지정함조상 : absolute or relative조상중에 absolute or relative가 없으면 body를 기준 3. position:fixed웹 브라우저 client영역스크롤 상관없이 고정 위치 4. position:relative1,..

javascript & jQuery 2016.05.03

[Server] Node.js

닉네임 실시간 중복확인 기능을 구현하기 위하여 NodeJS를 사용해야 할 일이 생겼다.NodeJS 나 Tomcat 에 Ajax를 통하여 요청!! 실시간 통신 기술 : TCP socket, WebSocketpackage.json http://www.nextree.co.kr/p4771/ http://furtur3.blogspot.nl/2015/07/nodejs-express-jquery-ajax.html Nodejs.org NodeJS란!Apache와 같은 웹서버 들은 요청마다 쓰레드를 생성하는 쓰레드 기반 따라서, realtime application 처럼 long-lived connection을 사용하는 app에서는 적합 x, 확장 어려움 이러한 쓰레드 기반의 문제를 해결하기 위..

기타내용 2016.05.02

jQuery 찔끔

1.window.alert("ok"); window는 생략가능 java.lang 생략하는 것처럼 => alert("ok"); 2.getElementById : 맞는 id getElementByTagName : 맞는 name, 여러개일수 있으니 항상 배열로 return 3. ~~ : elementtag 보다 element라는 명칭이 더 정확 4. http://jscompress.com공백을 없애고, 변수명을 최대한 짧게하여 용량을 작게한 것.압축이 아니야!!javascript는 압축하면 못씀 5. cb : callback 6.jQuery 함수의 특징하나의 method를 가지고 get,set 모든 동작을 할 수 있다val 은 배열로 꺼내주는데 나머지것들은 값 꺼낼때 첫번째꺼만 꺼내줌 7.jquery가 ret..

javascript & jQuery 2016.04.12

[#4] Canvas & Animation

1. 그림 그릴 영역 준비 : 그래픽이 그려질 영영(container)-id, height, width : 크기의 단위 pixel수 % 안먹힘 2. 그림그릴 준비var wpcanvas=document.getElementById("cvs");var wpcontext=wpcanvas.getContext("2d"); -getContext : 2차원의 다양한 도형을 그릴 수 있는 메소드들을 ㄱ자ㅣㄴ context object를 get 3. 사각형 그리기 wpcontext.fillRect(20,20,100,100); // 사각형 그리기wpcontext.strokeRect(20,160,100,100); // 테두리 있는 사각형 그리기wpcontext.fillRect(160,20,100,100);wpcontext.c..

javascript & jQuery 2016.04.12
반응형