24
jQuery에서 로딩 스피너를 표시하는 방법은 무엇입니까?
에서 프로토 타입 이 코드와 함께 "로드 ..."이미지를 표시 할 수 있습니다 : var myAjax = new Ajax.Request( url, {method: 'get', parameters: pars, onLoading: showLoad, onComplete: showResponse} ); function showLoad () { ... } jQuery 에서는 다음 과 같이 서버 페이지를 요소에로드 할 수 있습니다. $('#message').load('index.php?pg=ajaxFlashcard'); 그러나 프로토 타입에서와 같이 …