네이버 index.html 가져오기 정책에 의해 막혔다고 나옴.. v_ajax.open("get", "http://naver.com/index.html", true) CORS(Cross-Origin Resource Sharing) ※ 기본 정책이 same-origin origin(출처) 3개로 구성이 되어있다. 프로토콜+서버명(도메인)+포트번호 세 가지 중에 하나라도 다르다면 origin이 다르다고 말함 1) http://localhost:80(웹서버는 기본적으로 80번이 생략) 2) https://localhost:80 1)과 2)는 프로토콜이 다르기에 origin이 다르다. 3) http://localhost:80(웹서버는 기본적으로 80번이 생략) 4) http://psy.com:80 3과 4는 서..