Written by
java-style
on
on
clone
clone
728x90
$('.복사할셀렉터').clone().removeClass('특정클래스제거').attr('id','아이디추가').appendTo( '.ul_list_02 .clear' );
클론으로 복사한 경우 기존 자바스크립트 이벤트 트리거가 안먹힘.
태그에 onclick 이벤트를 달던가, 아래 코드블럭에 하단 처럼 이벤트를 주어야 함
jQuery(function($){ $( "#test" ).on( "click" , "#button", function() { $("#test ul").append("test" +$('li').length+ ""); }); $(li ).on( "click" , function() { alert($(this).text()); }); }); jQuery(function($){ $( "#test" ).on( "click" , "#button", function() { $("#test ul").append("test" +$('li').length+ ""); }); $(document ).on( "click" , "li", function() { alert($(this).text()); }); });
from http://young-up.tistory.com/1495 by ccl(A) rewrite - 2021-11-01 14:27:47