有沒有 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.