CORS 헤더 'Access-Control-Allow-Origin'이 없습니다. asp.net 폼에서 이 함수를 호출하고 있으며, ajax를 호출하는 동안 firebug 콘솔에서 다음 오류가 나타납니다. 차단된 발신지 간 요청:동일한 오리진 정책에 따라 http://anotherdomain/test.json의 원격 리소스를 읽을 수 없습니다(이유: 'Access-Control-Allow-Origin'이 누락됨). var url= 'http://anotherdomain/test.json'; $.ajax({ url: url, crossOrigin: true, type: 'GET', xhrFields: { withCredentials: true }, accept: 'application/json' }).don..