简体   繁体   中英

jwplayer not playing in ie8

Hi I have been using this embedding code to play jwplayer on my site, at it works fine with chrome,firefox and safari. and would be fine with any html compatible browser, however i would like to make the videos available for people viewing in ie8. is there something I can add to the code to make this possible?

<html>
  <head>
    <script src="/jwplayer/jwplayer.js"></script>
  </head>
  <body>
    <div id="container">HD video coming up!</div>
       <script>

        var options = {

               file: "clash.mp4",
               height: 270,
               width: 480,
               modes:
                     [
                        { type: "html5" },
                        { type: "flash", src:"/jwplayer/player.swf" }
                     ],

                        };
          jwplayer("container").setup(options);
      </script>
   </body>
</html> 

那应该工作正常,您是否有一个链接可以我们看一下?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM