jQuery empty() Method ================== The empty() method removes all child nodes and content from the selected elements.selector엘리먼트로부터 모든 child node들과 content를 지운다. This method does not remove the element itself, or its attributes.selector엘리먼트 그자체와 속성을 지우지는 못한다. To remove the elements without removing data and events, use the detach() method.data와 event들을 유지한채로 element들을 지우려면, detach() 메서드를 ..
jQuery on() Method ================용법 $(selector).on(event,childSelector,data,function,map) selector에 event를 붙여서, 해당 이벤트가 발생하면 function 실행. event와 function은 필수, 나머지는 선택 ================ex> -html-Click this paragraph. --- attach a click event to the element태그 element에 click 이벤트를 붙임. ================사례 $('input').on('change', function() { // Does some stuff and logs the event to the console });이렇게..
JQuery change() 메서드 =========: element의 값이 change되었을때, change 이벤트 발생 (이때, element는 만 해당됨) -html- -javascript-$('#abc').change(function(){alert("변경됨.");}); input text박스의 내용이 변경되었을때 (change이벤트가 발생해서) "변경됨"이 호출되는 메서드가 실행됨. =========용법 (2가지)---1. $(selector).change() Trigger the change event for the selected elements선택된 element에 대해 change이벤트를 (강제로) 일으킨다. ex> -html- Trigger change event for input fie..