Может ли кто-нибудь объяснить, почему document.write не записывает тег тела в этом примере?
#javascript Вопрос: Учитывая следующий HTML-код с небольшим фрагментом JS: <html> <head> <title></title> </head> <body> <script> const iframeEl = document.createElement("iframe"); document.body.appendChild(iframeEl); const htmlToWrite = "<html><head><title></title><script src="javascript:void(0)" defer=""></script></head><body></body></html>"; const iframeDocument = iframeEl.contentWindow.document;…