1 2 3 4 5 6 7 8 9 10 11 12 13 14
(function () { 'use strict'; window.addEventListener('message', function(e) { var mainWindow = e.source; mainWindow.postMessage('data ok', e.origin); }); window.onmessage = function (e) { if (e.data.html) { document.body.innerHTML = e.data.html; } }; })();