윈도우간, 윈도우 내 아
이프레임간 데이터 전달 기능 개발 필요할때.
// index.html 부모 페이지
window.addEventListener('message', (event: MessageEvent) => {
console.log(event.data);
});
window.open('popup.html');
// popup.html
<body>
<iframe
</body>
'코드 > JS' 카테고리의 다른 글
[JS] URL 파싱 (0) | 2020.12.22 |
---|---|
[JS] Base64 Decode (0) | 2020.05.29 |
[JS] query 읽어 오기 (0) | 2020.05.20 |
[JS] 브라우저 언어 판단 (0) | 2020.05.14 |
[rxjs] SwitchMap (0) | 2020.05.08 |