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.
是否可以将 html 直接放在我的 html 模板中的 iframe 中?这样的事情有效吗?
<iframe> <html> <head> </head> <body> <p>Hello world</p> </body> </html> </iframe>
据我所知,您必须将链接放入 iframe 才能工作。这意味着您需要制作另一个 HTML 文件并制作<iframe src="pagename.html"></iframe>
<iframe src="pagename.html"></iframe>
这仅适用于不支持 iframe 元素的浏览器。任何体面的浏览器都会将其识别为 iframe 并显示一个空白方块。