개발 무지렁이

[jQuery] 트리거(trigger): 이벤트 강제 호출 본문

Frontend/JavaScript

[jQuery] 트리거(trigger): 이벤트 강제 호출

Gaejirang-e 2023. 4. 22. 20:28

트리거(trigger)


어떤 액션/이벤트 이(가) 일어났을 때, 요소(Node)가 갖고있는 이벤트를 강제 호출

🌝 Add New HTML Content

- append(): 자식노드로 추가, 뒤
- prepend(): 자식노드로 추가, 앞

- after(): 형제노드로 추가, 뒤
- before(): 형제노드로 추가, 앞

🌚 Remove HTML Content

- remove(): element 자체를 제거
- empty(): 하위요소를 제거
  $(function() {
      $("#removeId").click(function() { // 어떤 액션/이벤트가 발생했을 때, trigger
          $("div").remove(); // 이벤트 강제 호출
      });

      $("#emptyId").click(function() {
          $("div").empty();
          $("div").html("hi");
      });
  });
Comments