开发者

How to remove missing plugin error while using embed tag

开发者 https://www.devze.com 2023-02-03 15:54 出处:网络
As开发者_如何学运维 I am using embed tag in my html file but in browser it is showing missing plugin. To solve this plugin problem what can I do?For playing FLV in html, you should use thetag. For exa

As开发者_如何学运维 I am using embed tag in my html file but in browser it is showing missing plugin. To solve this plugin problem what can I do?


For playing FLV in html, you should use the tag. For example:

<object type="application/x-shockwave-flash" 
width="320" height="240" 
wmode="transparent" 
data="player.swf?file=video.flv&autoStart=false">
<param name="movie" 
value="player.swf?file=video.flv&autoStart=false"/>
<param name="wmode" value="transparent"/>
</object>

Player.swf is player swf file and filename is the file attribute.

0

精彩评论

暂无评论...
验证码 换一张
取 消