[링크] 멀티부팅 관련
http://yuka.tistory.com/41
http://yuka.tistory.com/41
* $(‘#formId’).serialize() – 선택된 폼 객체 내의 모든 폼 요소들을 파라미터 문자열화 하여 리턴한다. – 결과 예) check=check2&radio=radio1 * $(‘#formId’).serializeArray() – 선택된 폼 객체 내의 모든 폼 요소들을 name-value 쌍의 json object 배열 객체로 리턴한다. – 결과 예) [ { name: “a”, value: “1” } … Read More »
* 콜백함수 문법은 특정 함수의 동작이 끝남과 동시에, 다른 여러가지 함수를 호출해야 할 경우에 사용된다. // 콜백함수 정의 function callbackTest(arg){ alert(arg); } // 콜백함수를 호출할 함수 정의 function test( arg1, arg2, callback ){ if( typeof callback == “function” ){ callback(); } } // 함수 호출부… Read More »
– 출처 : http://blog.outsider.ne.kr/675 – var keyname = ‘key’; var something = { }; something[keyname] = ‘value’; 위와 같이 [] 방식으로 프로퍼티를 설정하는 방법을 이용하면 키값을 동적으로 설정할 수 있습니다.
append() 와 appendTo() 의 차이와 같다
– 출처 : http://www.lovelgw.com/Blog/237 – Javascript 에서 DOM 객체를 다루거나 JQuery 를 이용해 다이나믹한 페이지를 작성하려 할때 객체를 변수에 담는 일을 많이 합니다. 여러 DOM객체를 불러 들이고 함수 내부에서 사용을 한 다음에 재 사용하지 않을때 delete 연산자를 이용하여 객체를 제거 해주는 것이 전체적인 속도 및 메모리 사용에 있어서 많은 잇점이 있습니다. 예를 들어 동적인 페이지를 작성하는 함수에서… Read More »
http://www.alfajango.com/blog/the-difference-between-jquerys-bind-live-and-delegate/ http://stackoverflow.com/questions/2954932/difference-between-jquery-click-bind-live-delegate-and-trigger-functions-wit
– 출처 : 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 »
<div id=”foo+”></div> 가 있다고 할 때 $(‘#foo\\+’) => 이렇게 사용해야 찾아낸다. * 참고 그러나 위의 #foo\\+ 을 별도의 문자열로 구성하여 alert() 등으로 뿌려보면 \ 하나가 없어져서 #foo\+ 가 되는 것을 볼 수 있다. 아마도 코딩시에는 \\로 escape를 하지만, 메모리에 올라가서 String 객체가 되는 순간 \하나가 없어지는 것으로 보인다. 어쨌든 이 경우에도 jQuery는 정상적으로 selecting을 한다.
http://javacan.tistory.com/30
List<String> list = new ArrayList<String>(); list.add(“3”) ; list.add(“1”) ; list.add(“2”) ; list.add(“5”) ; list.add(“4”) ; System.out.println(list); Collections.sort(list); System.out.println(list);
클라우드컴퓨팅(1) 궁금증 – 10문 10답 클라우드 서비스인 Saas , Paas , HaaS, IaaS
parseInt(t1 / t2); //몫 parseInt(t1 % t2); //나머지
메모리 관련 버그인 것 같다. 메모리의 여유분을 확보하고 울트라에디트를 재시작하자.
* 수정하기에 부담없는 개발DB서버나, 로컬에서 DB를 돌릴 때 테이블의 데이터를 백업하는 방법으로, 제약조건등은 복사되지 않고 칼럼형식과 데이터는 그대로 복사된 새 테이블을 만드는 방법이다. CREATE TABLE AAA_20111118 AS SELECT * FROM AAA
– 출처 : http://stackoverflow.com/questions/2857900/onhide-type-event-in-jquery – * 상황 설명 마치 onclick 이벤트처럼, ‘어떤 동작’을 수행할 때(특정 함수를 호출할 때) 특정 동작을 수행하게 하고 싶다. 그러나 그 동작이 jQuery에 built-in 된 이벤트가 아니기 때문에 bind() 를 사용할 수가 없다. 어떻게 해야 하는가? * 방법 1 – 실제로 ‘hide’ 이벤트는 존재하지 않지만, 마치 이벤트가… Read More »
http://blog.doortts.com/214
http://jsbeautifier.org
* 대부분의 브라우저는 다음의 함수를 사용할 수 있도록 브라우저에서 ‘console’ 객체를 지원한다고 함. console.log(‘aaa’, ‘bbb’); * 참고링크 http://jaures.egloos.com/2303789
http://gyuha.tistory.com/193 http://gyuha.tistory.com/405