[링크] 자바스크립트에서(javascript)에서의 스코프(scope)
Javascript에서 Scope (1) – 기본 Javascript에서 Scope (2) – 응용 Javascript에서 Scope (3) – this, prototype, new Javascript에서 Scope (4) – Element Object에서 this
Javascript에서 Scope (1) – 기본 Javascript에서 Scope (2) – 응용 Javascript에서 Scope (3) – this, prototype, new Javascript에서 Scope (4) – Element Object에서 this
http://sitereloader.appspot.com
실험해 본 결과, 비 IE 계열에서는 TD에 rowspan을 적용할 때 display:none을 한 칼럼들은 rowspan의 적용대상에서 제외되는데, IE 에서는 display:none을 한 칼럼들도 rowspan의 적용대상이 된다. 그러므로 rowspan을 먹일 때에는 브라우저별 확인이 꼭 필요하다. * 2011.12.30 추가 – 실험 결과 위의 현상이 항상 발생하는 것은 아니고, 어떤 때에는 rowspan의 대상이 되었다가,또 어떤 때에는 rowspan의… Read More »
* 증상 테이블의 특정 TD에 jQuery의 text(arg) 함수를 사용하여 값을 삽입하는데, 테이블의 셀을 가로지르는 불필요한 선들이 불규칙하게 생성되었다. (아래 그림에서 원래 이중실선이 아닌데 아래와 같이 렌더링 되었음) 오직 IE 에서만 이 문제가 발생한다. (IE 진짜.. 어후 그냥 -_-+…) * 원인 jQuery selector 의 잘못된 사용… Read More »
* rowspan 문제일 경우 – IE에서 테이블의 TD는 rowspan 속성을 따로 주지 않아도 기본적으로 rowspan=’1′ 을 가지고 있다. 그래서 rowspan 속성의 존재여부를 확인하는 .filter(‘[rowspan]’) 같은 selector는 사용할 수 없다. – 그래서 filter() 에 함수를 사용하여 크로스브라우징 문제를 해결했다. .filter(function(){ var $td = $(this);… Read More »
http://code.google.com/intl/ko-KR/apis/libraries/devguide.html
– 출처 : http://dancer.tistory.com/53 – arguments.callee This property is a reference to the function that you are in. Which is very handy if you want to get a reference to an anonymous function from inside itself. One good reason for doing this would be in a recursive anonymous function. arguments.caller This property is a reference to the… Read More »
http://phpschool.com/gnuboard4/bbs/board.php?bo_table=tipntech&wr_id=65738&page=1 http://tiagoe.blogspot.com/2010/01/css-style-typefile-tags.html
FTP클라이언트의 서버 종류를 해당 OS에 맞게 수동으로 설정해 주자!
* jQuery의 hide(), show() 메서드는 display 스타일 속성과만 관계가 있는 듯 하다. visibility 속성을 핸들링 하려면 jQuery의 css() 함수를 사용하자. $obj.css(‘visibility’, ‘hidden’); //숨기기 $obj.css(‘visibility’, ‘visible’); //보이기
* 자바스크립트에서 replace() 함수를 사용하면 첫 번째 매칭만 변환을 하게 된다. replaceAll()의 효과를 내려면 split() 과 join()을 연달아 사용하면 된다. 예) ‘A,B,C’.split(‘,’).join(”);
var jsonStr = “{10:’a,b,c’, 20:’a,b’, 30:’c’}”; var jsonObj = eval( “(” + jsonStr + “)” ); => 괄호로 한 번 더 감싸주어야 한다!
SELECT * FROM v$version WHERE banner LIKE ‘Oracle%’;
String s[] = new String[5]; //생성만 String s[] = {“Lars”, “Bruce”, “Alisa”}; //생성과 동시에 초기화
– 출처 : http://www.ke-cai.net/2009/05/remove-jquery-ui-dialogs-title-bar.html – 1. Hide it via it’s default CSS: .ui-dialog-titlebar { display: none; }; * 주의 : This will change all dialog’s apperance. 2. Or add another CSS class, insetad of change them all. .hide-title-bar.ui-dialog-titlebar { display: none; } $(“#dialog”).dialog({ dialogClass: “hide-title-bar” }); 3. Remove title bar element… Read More »
– 출처 : http://superuser.com/questions/279231/can-i-stop-windows-7-from-fading-windows-on-alt-tab – 1. regedit 를 실행하여 레지스트리 편집기를 연다. 2. 다음의 경로에 AltTab 이라는 이름의 키(key)를 만든다. HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\AltTab 3. AltTab 키 안에 LivePreview_ms 라는 이름의 DWORD 를 만든다. 4. LivePreview_ms 의 값을 밀리세컨드 단위로 입력한다. – LivePreview_ms 는 alt + tab 을 누른 이후 얼마 후에 페이드 아웃을 시작할 것인가 를 결정한다. 딱히… Read More »
MSDN 레퍼런스 KOXO 레퍼런스 * 참고사항 – IE의 모달창에서는 브라우저의 console 객체를 인식하지 못한다.
* 자바스크립트 함수 호출시 인수를 생략하고 호출할 경우와 인수에 null 을 넣고 호출할 경우, 함수 내부에서는 어떻게 해석하는지, 또 null과 undefined는 어떤 관계가 있는지 살펴보자. function test(arg){ var isNullValue = (arg == null); var isUndefinedValue = (arg == undefined); var isNull … Read More »
http://yuka.tistory.com/41
* $(‘#formId’).serialize() – 선택된 폼 객체 내의 모든 폼 요소들을 파라미터 문자열화 하여 리턴한다. – 결과 예) check=check2&radio=radio1 * $(‘#formId’).serializeArray() – 선택된 폼 객체 내의 모든 폼 요소들을 name-value 쌍의 json object 배열 객체로 리턴한다. – 결과 예) [ { name: “a”, value: “1” } … Read More »