728x90
반응형
live() 함수가 jquery 1.9.x부터 deprecated 되면서 live, bind, delegate함수를 on함수로 마이그레이션
//Bind
$("#요소").bind("click", function(e){});
$("#요소").on("click", function(e){});
// Live
$("#요소").live("click", function(e){});
$(document).on("click", ""#요소"", function(e){});
//Delegate
$("#요소").delegate("a", "click", function(e){});
$("#요소").on("click", "a", function(e){});
728x90
반응형
'HTML > JS & jQuery' 카테고리의 다른 글
[jQuery] input type="file" 이미지 미리보기 (0) | 2025.02.18 |
---|---|
[JS] 문자열 공백 제거하기 (0) | 2025.02.12 |