有没有 HTML5 iframe srcdoc 的替代品?


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();

更新日期:29-Jan-2020

595 次浏览

开启你的 职业生涯

通过完成课程来获得认证

开始
广告
© . All rights reserved.