是否有 HTML5 iframe srcdoc 的替代品?

javascriptweb developmentfront end scripts更新于 2024/7/29 9:47:00

srcdoc 属性指定要在 iframe 中显示的页面的 HTML 内容。HTML <iframe> 标签用于创建内联框架。

srcdoc  属性的替代品将是:

var doc = document.querySelector('#demo').contentWindow.document;
var content = '<html></html>';

doc.open('text/html', 'replace');
doc.write(content);
doc.close();

相关文章