[컴][웹] jquery 에서 append 하기 전에 기존의 item 을 clear 시키는 빠른 방법

jquery empty() / clear the items / child 를 clear 하는 방법 / element 를 clear 하는 방법 / how to remove all the elements with jquery



Element 들을 지우는 방법

ref.1 에서 3가지 방법에 대한 속도 test 를 진행할 수 있다.

  1. .html(el)
  2. .empty().append(el)
  3. .each(function(){}); .append()

일단 내 컴퓨터에서는 3번째가 가장 빨랐다. 그런데 2번째와 큰차이는 없었다. 그래서 간결하게 2번째를 쓰는 것이 좋을 듯 하다.

자세한 source code 는 ref.1 을 참고하도록 하자.


Reference


  1. http://jsperf.com/jquery-html-vs-clear-append

댓글 없음:

댓글 쓰기