如何指定页面的HTML内容以显示在HTML的 <iframe>中?

使用srcdoc 属性指定要在<frame>中显示的页面的HTML内容。您可以尝试运行以下代码来实现srcdoc 属性-

示例

<!DOCTYPE html>
<html>
   <body>
      <iframe srcdoc = "<h2>Nhooo</h2>" src = "new.html">
         <p>Browser do not support iframes.</p>
      </iframe>
   </body>
</html>