Internet explorer 嵌入式FLV在Fire Fox和Safari中播放,但不在IE中播放

Internet explorer 嵌入式FLV在Fire Fox和Safari中播放,但不在IE中播放,internet-explorer,flv,Internet Explorer,Flv,我使用DW生成的代码嵌入了一个FLV文件,它在IE中不起作用,但在Firefox和Safari中可以使用。它甚至在我的桌面上的IE中播放,只是不在现场。实际地点 这是我的密码: <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="720" height="400" id="FLVPlayer"> <param name="movie" value="FLVPlayer_Progr

我使用DW生成的代码嵌入了一个FLV文件,它在IE中不起作用,但在Firefox和Safari中可以使用。它甚至在我的桌面上的IE中播放,只是不在现场。实际地点

这是我的密码:

  <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="720" height="400" id="FLVPlayer">
      <param name="movie" value="FLVPlayer_Progressive.swf" />
      <param name="quality" value="high" />
      <param name="wmode" value="opaque" />
      <param name="scale" value="noscale" />
      <param name="salign" value="lt" />
      <param name="FlashVars" value="&amp;MM_ComponentVersion=1&amp;skinName=Clear_Skin_1&amp;streamName=files/IHG_V4&amp;autoPlay=true&amp;autoRewind=false" />
      <param name="swfversion" value="8,0,0,0" />
      <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
      <param name="expressinstall" value="Scripts/expressInstall.swf" />
      <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
      <!--[if !IE]>-->
      <object type="application/x-shockwave-flash" data="FLVPlayer_Progressive.swf" width="720" height="400">
        <!--<![endif]-->
        <param name="quality" value="high" />
        <param name="wmode" value="opaque" />
        <param name="scale" value="noscale" />
        <param name="salign" value="lt" />
        <param name="FlashVars" value="&amp;MM_ComponentVersion=1&amp;skinName=Clear_Skin_1&amp;streamName=files/IHG_V4&amp;autoPlay=true&amp;autoRewind=false" />
        <param name="swfversion" value="8,0,0,0" />
        <param name="expressinstall" value="Scripts/expressInstall.swf" />
        <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
        <div>

        </div>
        <!--[if !IE]>-->
      </object>
      <!--<![endif]-->
    </object>

您可以尝试向代码中添加一个。这将告诉IE它应该使用IE8模式或IE9模式。这可能会解决你的问题

要使用的代码:

 <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8" >


如果这是与女士交谈的视频的代码,那么我在IE中检查了它,它对我有效。谢谢Chillie,但我不知道你是怎么看的,因为我尝试了不同的计算机(家庭、工作朋友等),没有人能在IE6-9上看到它???我检查了,似乎我的问题源于IE兼容模式,由于我的办公室一直处于开启状态,这就是为什么我在这里看不到它,我的同事也看不到它。有人知道一个代码修复程序可以在IE兼容模式下显示吗?谢谢@Chillie我在元代码中添加了它,我仍然无法在我的办公室观看视频,但感觉更好的是,有了这个标签,大多数观众都可以观看。