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