써먹는 웹개발
[Js] Failed to execute 'postMessage' on 'DOMWindow': The target origin provided ('https://exam.com') does not match the recipient window's origin ('https://www.exam.com') 본문
웹개발/Js & Jquery
[Js] Failed to execute 'postMessage' on 'DOMWindow': The target origin provided ('https://exam.com') does not match the recipient window's origin ('https://www.exam.com')
kmhan 2023. 8. 30. 16:59728x90
반응형
상황 : 'https://www.exam.com/매핑명' 주소인 팝업화면에서 처리후에 jsp 화면 호출할때 아래 js 소스 실행중 에러발생
1. 변경 전
1
2
|
var url = "https://exam.com:443";
opener.postMessage({msg:'Hello world!'},url);
|
cs |
2. 변경 후
1
2
|
var url = "https://www.exam.com:443";
opener.postMessage({msg:'Hello world!'},url);
|
cs |
728x90
반응형
'웹개발 > Js & Jquery' 카테고리의 다른 글
[Js] queryString 변경 (0) | 2023.09.01 |
---|---|
[Js] 이클립스 콘솔에서 Can not deserialize instance of java.util.ArrayList from Object value (token `JsonToken.START_OBJECT`) 메시지 출력될때 (0) | 2023.08.31 |
[Js] 화면 넘김(submit)없이 파일업로드하기 (0) | 2023.08.28 |
[Js] ajax에서 500 에러났던 이유 (0) | 2023.08.27 |
[JQuery] attr 주의사항 (0) | 2023.08.03 |
Comments