jQuery 업그레이드2 jQuery 1.12.x to jQuery 3.x Upgrade 주요 변경 사항 1. 주요 변경 사항1.1 Ajax 관련 변경1) success, error, complete 콜백 제거이전에는 $.ajax()에서 success, error, complete를 사용했으나, 최신 버전에서는 Promise 방식을 선호합니다.수정 전:$.ajax({ url: '/example', success: function (data) { console.log(data) }, error: function () { console.error('Error occurred') }})수정 후:$.ajax('/example') .done(function (data) { console.log(data) }) .fail(function () { console.error('Error.. 2024. 12. 15. jQuery 1.12.x to jQuery 3.x Upgrade 방법 Jquery 1.12.2 에서 3점대로 업그레이드하는 방법입니다.업그레이드 방법은 Jquery 공식 홈페이지에도 기재되어 있습니다.먼저 먼저쓰던 버전이 1.9버전 미만이라면 jQuery Migrate 1.4.1 를 다운받고,1.9 이상이라면 jQuery Migrate 3.3.2 를 다운받으시면 됩니다.https://jquery.com/download/#jquery-migrate-plugin Download jQuery | jQuerylink Downloading jQuery Compressed and uncompressed copies of jQuery files are available. The uncompressed file is best used during development or debuggi.. 2022. 2. 8. 이전 1 다음 반응형