Category Archives: Lang

프로그래밍 언어

[펌글] javascript delete 연산자(operator)

By | 11월 25, 2011

– 출처 : http://www.lovelgw.com/Blog/237 – Javascript 에서 DOM 객체를 다루거나 JQuery 를 이용해 다이나믹한 페이지를 작성하려 할때 객체를 변수에 담는 일을 많이 합니다. 여러 DOM객체를 불러 들이고 함수 내부에서 사용을 한 다음에 재 사용하지 않을때 delete 연산자를 이용하여 객체를 제거 해주는 것이 전체적인 속도 및 메모리 사용에 있어서 많은 잇점이 있습니다.  예를 들어 동적인 페이지를 작성하는 함수에서… Read More »

[펌글] jQuery 특수문자 (special character) 목록

By | 11월 23, 2011

– 출처 : http://www.xinotes.org/notes/note/958/ – The jQuery doc says:  If you wish to use any of the meta-characters (such as !”#$%&'()*+,./:;?@[\]^`{|}~) as a literal part of a name, you must escape the character with two backslashes: \\.  So what are these meta-characters? According to the CSS specification:  In CSS, identifiers (including element names, classes, and IDs in selectors) can contain only the characters… Read More »

jQuery 셀렉터 사용시 특수문자 (예: +)가 있을 경우의 사용법

By | 11월 23, 2011

<div id=”foo+”></div>  가 있다고 할 때 $(‘#foo\\+’)   => 이렇게 사용해야 찾아낸다. * 참고  그러나 위의 #foo\\+ 을 별도의 문자열로 구성하여 alert() 등으로 뿌려보면 \ 하나가 없어져서   #foo\+ 가 되는 것을 볼 수 있다. 아마도  코딩시에는 \\로 escape를 하지만, 메모리에 올라가서 String 객체가 되는 순간 \하나가 없어지는 것으로 보인다. 어쨌든 이 경우에도 jQuery는 정상적으로 selecting을 한다. 

jQuery로 사용자 이벤트(event) 만들어 사용하기

By | 11월 17, 2011

– 출처 : http://stackoverflow.com/questions/2857900/onhide-type-event-in-jquery – * 상황 설명     마치 onclick 이벤트처럼, ‘어떤 동작’을 수행할 때(특정 함수를 호출할 때)  특정 동작을 수행하게 하고 싶다.     그러나 그 동작이 jQuery에 built-in 된 이벤트가 아니기 때문에 bind() 를 사용할 수가 없다. 어떻게 해야 하는가? * 방법 1      – 실제로 ‘hide’ 이벤트는 존재하지 않지만, 마치 이벤트가… Read More »

[펌글] jQuery select box(콤보박스) 와 option의 제어

By | 11월 8, 2011

– 출처 : http://sexybear.tistory.com/146 – $(“<option></option>”) .attr(“selected”, “selected”) .text(“텍스트”) .attr(“value”, “값”) .appendTo(“#selectboxid”); $(“#selectboxid”) .change(function() { alert(this.value); }); * 참고    removeAttr(‘selected’) 도 염두에 두자

자바스크립트 소수점 이하 자릿수 지정 방법

By | 11월 8, 2011

– 출처 : http://mwultong.blogspot.com/2007/08/javascript-tofixed.html – * 숫자 객체의 함수인 toFixed(n) 을 사용하면 임의로 소수점 이하 자릿수를 지정할 수 있다.   (예) var num = 123.456         num.toFixed(5)  =>  123.45600   //자릿수를 맞추기 위해 나머지 부분을 0으로 채움         num.toFixed(2)  =>  123.46        //해당 자릿수로 반올림 처리 – 참고… Read More »

[펌글] html style 중 하나인 border의 속성에 대하여

By | 11월 2, 2011

– 출처 : http://blog.naver.com/battledocho/50093308151 – ※ border의 테두리두께, 모양, 색 설정하는 속성 등을 설정할 수 있다.   * border-style : 테두리 모양       solid      double      groove      ridge      inset      outset * border-width : 테두리를 각각 좌우위아래별로 설정 가능      border-left-width           border-right-width      border-top-width… Read More »

jQuery .size() 와 .length 의 차이점

By | 11월 2, 2011

구글링 해 본 결과… .size() 와 .length 는 같은 결과를 반환하고, .size()는 .length 를 메서드 콜 하기 때문에 아주 미세하게 느리다 (-_- 😉 라고 한다.  결국 차이가 없다는 말이다.  

[펌글] 자바스크립트 nodeType 에 대하여

By | 10월 28, 2011

– 출처 : https://developer.mozilla.org/en/nodeType – Summary Returns an integer code representing the type of the node. Syntax var type = node.nodeType; type is an unsigned short with one of the following values: Node.ELEMENT_NODE == 1 Node.ATTRIBUTE_NODE == 2 Node.TEXT_NODE == 3 Node.CDATA_SECTION_NODE == 4 Node.ENTITY_REFERENCE_NODE == 5 Node.ENTITY_NODE == 6 Node.PROCESSING_INSTRUCTION_NODE == 7 Node.COMMENT_NODE == 8 Node.DOCUMENT_NODE ==… Read More »