object/embed 元素

object:

用法:

<object data="./../xxx.swf" type="">
    <param name="quality" value="high"></param>
</object>

embed:

用法:

<embed quality="high" src="../../xxx.swf" type="">
</embed>

l两种都是用来调用播放swf文件,,其兼容性不同

兼容写法

<object data="./../xxx.swf" type="">
    <param name="quality" value="high"></param>
  <embed quality="high" src="../../xxx.swf" type=""></embed>
</object>

都是可替换元素

猜你喜欢

转载自www.cnblogs.com/guyuedashu/p/12436005.html
今日推荐