html的embed ——type里面的是什么意思,只能用手机微信看吗?_百度知 ...
发布网友
发布时间:2022-05-09 13:34
我来回答
共2个回答
热心网友
时间:2022-04-20 08:09
embed是html5中新的一种标签,其中type 属性规定被嵌入内容的 MIME 类型。在你给的列子里type="application/x-shockwave-flash" 说明embed里存放的是一个flash格式的文件。
具体用法可以参考以下网站:
说明什么是type:
http://www.w3cschool.cc/tags/att-embed-type.html
可以允许的type类型:
http://www.iana.org/assignments/media-types/media-types.xhtml
热心网友
时间:2022-04-20 09:27
<embed>标签是HTML5 中的新标签。
HTML5 <embed> type 属性规定被嵌入内容的 MIME 类型。
语法:<embed type="MIME_type" />
实例flash 动画:
<embed src="helloworld.swf" type="application/x-shockwave-flash" />