banner
Mar 27, 2022
115 Views

Truyền thông tin giữa iframe và host nếu có quyền kiểm soát cả 2

Written by
banner
// 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 Tags:
·
Article Categories:
dev
banner

Leave a Reply

Your email address will not be published. Required fields are marked *