JavaScript PostMessageでiframeとやりとりするには?
子のiframe内から 親のindex.html にイベントを送る。 iframe.html window.parent.postMessage で親ウィンドウにメッセージを送ります。 親のindex.html 親のindex.html から 子のiframe にイベントを送る。 親のindex.html document.querySelector({iframeを指定}).contentWindow.postMessage で iframe にメッセージを送ります。 iframe.html iframe の高さにリサイズする例 window.parent.postMessage で親ウィンドウにメッセージを送ります。 親のindex.html
JavaScript PostMessageでiframeとやりとりするには? Read More »