📜  HTML |<noembed>标签(1)

📅  最后修改于: 2023-12-03 15:01:15.033000             🧑  作者: Mango

HTML | <noembed>标签

简介

<noembed>是HTML标签之一,用于在网页中定义一块不可嵌入内容的区域。如果浏览器不支持嵌入式内容,则会在此区域显示一个替代性的内容。一般来说,这个替代性内容可以是一个提示信息或者一张图片等。

语法
<noembed>
    <!-- fallback content here -->
</noembed>
注意事项
  • <noembed>标签不应该用于纯文本内容。如果你只想显示一段文本,那么应该使用<p>标签或<div>标签等。
  • <noembed>标签不应该用于代替标签或
  • <noembed>标签在HTML5中已经被废弃了。现在通常使用<object>标签或<iframe>标签等代替。
实例
<embed src="movie.swf">
    <noembed>
        Sorry, but you need the latest version of the Flash Player to play this content. Please download it from <a href="http://www.adobe.com/go/getflashplayer">http://www.adobe.com/go/getflashplayer</a>.
    </noembed>
</embed>
上面的代码片段用来嵌入一个Flash动画,如果浏览器不支持Flash嵌入,则会在\<noembed>标签中显示一个提示信息。注意\<noembed>标签必须在\<embed>标签的内部使用。