티스토리 뷰
popup <-> opener간 통신을 위한 코드
- opener 에 message listen 이벤트 구현
window.onmessage = function(e){
if(e.origin.indexOf('tistory.com') < 0){
return;
}
if(e.data.type == 'test'){
alert(e.data);
}
};
if(e.origin.indexOf('tistory.com') < 0){
return;
}
if(e.data.type == 'test'){
alert(e.data);
}
};
- popup
window.open("http://tistory.com", "popup",
"scrollbars=no,toolbar=no," +
"location=no,resizable=no," +
"status=no,menubar=no,width=444,height=365");
- popup window에서 실행
opener.postMessage(eval('({"type":"test"})'),'http://tistory.com');
"scrollbars=no,toolbar=no," +
"location=no,resizable=no," +
"status=no,menubar=no,width=444,height=365");
- popup window에서 실행
opener.postMessage(eval('({"type":"test"})'),'http://tistory.com');
'공부 > uncategorized' 카테고리의 다른 글
문서 자동화 (0) | 2016.05.18 |
---|---|
DSL : Domain-Specific Language (0) | 2016.04.27 |
Yobi (0) | 2015.05.24 |
HTTP Referer (0) | 2015.05.08 |
HTML 특수문자 리스트 (0) | 2015.03.03 |
댓글