微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

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

在本文中,我们需要在iframe显示页面的HTML内容;浏览器窗口划分为单独的页面。我们可以使用

HTML

HTML 中的 标记指定内联框架。该内联框架用于在当前 HTML 文档中嵌入另一个文档。所有浏览器都支持标签,例如 Google Chrome、Microsoft Edge/Internet Explorer、Firefox、safari 和 Opera 等。

标签的“srcdoc属性用于指定要在页面显示的HTML内容

示例 1

在下面的示例中,我们使用带有

<!DOCTYPE html>
<html>
<head>
   <title>
      How to specify the HTML content of the page to show in the "iframe" in HTML?
   </title>
</head>
<body>
   <h3>How to specify the HTML content of the page to show in the "iframe" in HTML?</h3>
   <p>We can do it by using <b>srcdoc</b> attribute of iframe in HTML.</p>
   <iframe srcdoc="<h2>You can find any tutorial on tutorialspoint</h2>">
      <p>browser does not support iframes.</p>
   </iframe>
</body>
</html>

正如我们在输出中看到的,文档中的 HTML 内容

元素)显示

示例 3

认情况下,所有浏览器都会将

在下面的示例中,

  • 我们通过使用 CSS 更改

  • 我们使用带有

<!DOCTYPE html>
<html>
<head>
   <title>
      How to specify the HTML content of the page to show in the "iframe" in HTML?
   </title>
</head>
<body>
   <h3>How to specify the HTML content of the page to show in the "iframe" in HTML?</h3>
   <p>We can do it by using <b>srcdoc</b> attribute of iframe in HTML.</p>
   <iframe srcdoc="<div> Hello disha</div>" width="50%" height="100" style="border:3px solid green;">
     <p>browser does not support iframes.</p>
   </iframe>
</body>
</html>

正如我们在输出中看到的,文档中的 HTML 内容( 元素)显示

以上就是如何在HTML中指定要在<iframe>中显示页面的HTML内容?的详细内容,更多请关注编程之家其它相关文章

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐