Created
November 12, 2024 07:28
-
-
Save mywaiting/0097e643cf86bcf177fa7c2cc0f47dfe to your computer and use it in GitHub Desktop.
简单方便的插入的 iframe 的实现
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function insert_iframe(srcdoc) { | |
// 首先清理所有的已经插入的 iframe | |
// https://stackoverflow.com/a/65413839 | |
document.getElementById("web-browser").replaceChildren() | |
// 此处再考虑重新插入新的 iframe | |
const $el = document.createElement("iframe") | |
Object.assign($el, { | |
id: "iframe", | |
className: "iframe", | |
name: "iframe", | |
allow: "fullscreen", | |
referrerpolicy: "no-referrer", | |
sandbox: "allow-same-origin allow-scripts", | |
height: "100%", | |
width: "100%", | |
src: "/?blank=iframe&cors=iframe", // 默认嵌入 iframe 内容网址 | |
srcdoc: srcdoc | |
}) | |
document.getElementById("web-browser").appendChild($el) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment