개발 관련/JQuery
-
jQuery를 이용해서 XML을 DOM으로 변환개발 관련/JQuery 2012. 2. 15. 10:00
(function($) { $(document).ready(function() { var xml = "Hello world!"; var title = $.xmlDOM(xml).find("myxml>title").text(); $("#title").html(title); }); })(jQuery); xmlDOM 플러그인은 XML 문자열을 해성하는 기능(크로스 브라우저 지원) 제공한다. 다운로드: http://outwestmedia.com/jquery-plugins/xmldom/
-
removeProp()개발 관련/JQuery 2011. 10. 20. 11:37
The .removeProp() method removes properties set by the .prop() method. Additional Notes: In Internet Explorer prior to version 9, using .prop() to set a DOM element property to anything other than a simple primitive value (number, string, or boolean) can cause memory leaks if the property is not removed (using .removeProp()) before the DOM element is removed from the document. To safely set valu..
-
JQuery 이벤트 , 메소드개발 관련/JQuery 2011. 5. 18. 16:27
이벤트 e.preventDefault() - 대상을 클릭했을때 발생하는 이벤트를 방지(링크 이동 등등 막기) $(this) - 현재 이벤트가 적용된 개체 (DOM) .ready(fn); - 페이지 로딩시 fn 실행 .click(fn); - 클릭시 fn 실행 .one(fn); - 딱한번만 이벤트가 실행되고 해제됨 .dblclick(fn) - 더블클릭시 fn실행 .blur(fn) - 포커스를 잃었을때 fn실행 .focus(fn) - 포커스를 얻었을때 fn실행 .toggle(fn1,fn2); - 클릭시 fn1 과 fn2을 번갈아 실행 .scroll(fn) - window 창에서 scroll 이벤트가 발생할때마다 콜백함수 fn 을 실행 .change(fn) - 대상이 바뀌는 지 감지하여 fn을 실행 .keyUp..