Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有什么方法可以在文档中创建新的 iframe 并从变量中放入整页?我有新页面的源代码作为 var 中的字符串(包括 doctype、head 部分等)。我可以使用 jQuery 来完成这项任务。
要生成一个新元素并附加到另一个元素,请使用此链接(请参阅接受的答案)。将内容放入生成的 iframe 元素中,使用$("#yourIdOfgeneratedIframe").html(theNameOfYourVariable)
$("#yourIdOfgeneratedIframe").html(theNameOfYourVariable)