如何在 Iframe 讀取或寫入字串
建立 HTML
首先在 HTML 建立一個 iframe
1 | <iframe id="test"></iframe> |
操作 iframe
用 Javascript 搜尋 iframe 的DOM物件
1 | let iframe = document.getElementById('test').contentDocument; |
字串寫入 iframe
1 | iframe.open(); |
取得 iframe 字串
1 | iframe.body.innerText |
URL.createObjectURL 寫入 iframe
1 | const blobx = new Blob( |
📜 參考資料