3개의 함수를 차례로 실행하려면 어떻게 호출해야 합니까? 이 기능들을 차례로 호출해야 한다면, $('#art1').animate({'width':'1000px'},1000); $('#art2').animate({'width':'1000px'},1000); $('#art3').animate({'width':'1000px'},1000); 저는 jQuery에서 다음과 같은 일을 할 수 있다는 것을 알고 있습니다. $('#art1').animate({'width':'1000px'},1000,'linear',function(){ $('#art2').animate({'width':'1000px'},1000,'linear',function(){ $('#art3').animate({'width':'1000px'},10..