📅  最后修改于: 2023-12-03 15:01:15.033000             🧑  作者: Mango
<noembed>是HTML标签之一,用于在网页中定义一块不可嵌入内容的区域。如果浏览器不支持嵌入式内容,则会在此区域显示一个替代性的内容。一般来说,这个替代性内容可以是一个提示信息或者一张图片等。
<noembed>
<!-- fallback content here -->
</noembed>
<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>标签的内部使用。