Показать сообщение отдельно
  #5 (permalink)  
Старый 09.04.2018, 23:51
Аватар для j0hnik
Профессор
Отправить личное сообщение для j0hnik Посмотреть профиль Найти все сообщения от j0hnik
 
Регистрация: 01.12.2016
Сообщений: 3,650

<script>
(function() {

	var frame = document.createElement('iframe');

	var write = function(content) {
		frame.contentWindow.postMessage(content, '*');
	};

	frame.src = 'data:text/html,' + encodeURIComponent(`
		<script>
			window.addEventListener('message', function(event) {
				console.log(event.data);
				document.write(event.data);
			});
		<\/script>	
	`);

	document.addEventListener('DOMContentLoaded', function() {
		document.body.appendChild(frame);
		document.querySelector('iframe').contentWindow.document.write('<div>Line 1</div>');
		document.querySelector('iframe').contentWindow.document.write('<div>Line 2</div>');
	});
})();
</script>
Ответить с цитированием