Jquery Ajax 이미지 로드 중 아래 jquery ajax 코드에 대한 로드 이미지를 구현하고 싶습니다(이는 jquery가 아직 처리 중인 경우). $.ajax({ type: "GET", url: surl, dataType: "jsonp", cache : false, jsonp : "onJSONPLoad", jsonpCallback: "newarticlescallback", crossDomain: "true", success: function(response) { alert("Success"); }, error: function (xhr, status) { alert('Unknown error ' + status); } }); 이 코드로 이미지 로딩을 구현하려면 어떻게 해야 합니까?감사해요.묘사 다..