// parent -> iframe
// parent <iframe id="myframe" src="framed.htm"></iframe>
document.getElementById('myframe').contentWindow.postMessage('hello', '*');
//iframe
window.onmessage = function(e) {
if (e.data == 'hello') {
alert('It works!');
}
};
//iframe -> parent
window.top.postMessage('hello', '*')
// parent
window.onmessage = function(e) {
if (e.data == 'hello') {
alert('It works!');
}
};
Article Categories:
dev