분류 전체보기
Ajax POST방식과 GET방식
출처 : http://recollectionis.tistory.com/66 function createRequestObject() { try{ request = new XMLHttpRequest(); }catch(tryMS){ try{ request = new ActiveXObject("Msxml2.XMLHTTP"); }catch(otherMS){ try{ request = new ActiveXObject("Microsoft.XMLHTTP"); }catch(failed){ request = null } } } return request; } //POST 방식 function functionPostName(){ var request = createRequestObject(); var param =""; p..
Effect - Reference(API)
jQuery Effect MethodsThe following table lists all the methods used to create animation effects.MethodDescriptionanimate()Performs a custom animation (of a set of CSS properties) for selected elements 특정개체에 여러 애니메이션을 줄수있다.clearQueue()Removes all queued functions for the selected element 작동예정인것들을 모두 정지시킨다(애니메이션 외에도 다 정지)delay()Sets a delay for all queued functions for the selected elementdequeue(..
Events - Reference(API)
jQuery Event MethodsEvent methods trigger, or bind a function to an event for all matching elements.Trigger example:$("button").click() - triggers the click event for a button element.Binding example:$("button").click(function(){$("img").hide()}) - binds a function to the click event.The following table lists all the methods used to handle events.MethodDescriptionbind()Add one or more event hand..
Selectors(접근) - Reference(API)
jQuery SelectorsUse our excellent jQuery Selector Tester to experiment with the different selectors.SelectorExampleSelects*$("*")All elements - 모든엘리먼트 접근#id$("#lastname")The element with id=lastname - ID로 접근.class$(".intro")All elements with class="intro" - class로 접근element$("p")All p elements - 태그이름으로 접근.class.class$(".intro.demo")All elements with the classes "intro" and "demo" (하위클래스) :first ..
Selectors - 요약&정리
출처 : http://blog.naver.com/topsaga/140155594732 jQuery Selectors- jQuery selectors는 여러개 또는 한 개의 HTML 엘리먼트를 선택하고 조작할 수 있게 합니다. [jQuery Selectors]앞의 강좌에서 서로 다른 HTML 엘리먼트를 선택하는 방법을 알아봤습니다.키포인트는 jQuery를 이용하여 효과를 주기 원하는 엘리먼트를 정확하게 선택하는 방법을 배우는 것이다.jQuery selector는 엘리먼트 이름, 특성이름, 또는 content로 HTML 엘리먼트를 선택할 수 있게 합니다.※ HTML DOM에 따르면, selectors는 DOM 엘리먼트를 그룹단위 혹은 개별 node 단위로 조작할 수 있게 합니다. [jQuery Element..
이클립스에 jQuery 플러그인 설치하기
출처 : http://gy801110.blog.me/110229227 이클립스에서 사용하는 플러그인중 JQuery 플러그인입니다.설치시 코드 어시스턴트가 되는 장점이 있습니다. 개발할때 많은 유용한 점이 있어요~ ^^ 1. 다운로드 주소 : http://download.aptana.org/tools/studio/plugin/install/studio 2. 설치 가이드 1) Help > Install New Software > 다운로드 주소 입력 엔터! 2) 넥스트~ 3) accept후 넥스트~ 4) 해당 내용이 나오면 오케이 누르고 ㄱㄱ 5) 이클립스 재시작 6) 재시작 후 툴바(아래 그림 참조)에서 설치된 플러그인을 선택합니다. 7) Install Additional Features 창이 나오면 Jqu..
5) Selectors - firstChild & nextSibling
API : http://api.jquery.com/category/selectors/hierarchy-selectors/ jQuery로 firstChild, nextSibling으로 태그따라가서 출력하는거 해봣는데.. 첫번째줄 없애는걸 $("table > tbody:first >tr:first ~ tr > td:first").slideUp("slow"); 이렇게 수정하면 첫번째 테이블의 첫번째줄만 없어진다....... jQuery에도 this가 있어서 this의 첫번째줄을 없애는걸로 적용해야하는데 잘모르겟다.. jQuery의 html()과 자바스크립트의 innertHTML이 같은것같다. ( $("").html() == document.~~~~.innerHTML)