Skip to content

Instantly share code, notes, and snippets.

@mywaiting
Created November 12, 2024 07:28
Show Gist options
  • Save mywaiting/0097e643cf86bcf177fa7c2cc0f47dfe to your computer and use it in GitHub Desktop.
Save mywaiting/0097e643cf86bcf177fa7c2cc0f47dfe to your computer and use it in GitHub Desktop.
简单方便的插入的 iframe 的实现
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