HTML5 iframe srcdoc 的替代方案?
HTML <iframe> 标签用于创建内联框架。
示例
<!DOCTYPE html> <html> <head> <title>HTML iframe Tag</title> </head> <body> <iframe src = "https://tutorialspoint.com/index.htm" width = "100%"></iframe> </body> </html>
srcdoc 属性指定要显示在 iframe 中的页面的 HTML 内容
srcdoc 属性的替代方法为 −
var doc = document.querySelector('#demo').contentWindow.document; var content = '<html></html>'; doc.open('text/html', 'replace'); doc.write(content); doc.close();
广告