我有页面我想在 JWPlayer 中播放视频这是我正在使用的代码,我从网上获得
<script type="text/javascript" src="/jwplayer/jwplayer.js"></script>
<video height="270" width="480" id="myVideo">
<source src="/static/bunny.mp4" type="video/mp4">
<source src="/static/bunny.webm" type="video/webm">
</video>
<script type="text/javascript">
jwplayer("myVideo").setup({
modes: [
{ type: 'html5' },
{ type: 'flash', src: '/jwplayer/player.swf' }
]
});
</script>
它没有显示任何内容以及从何处获取 jwplayer/jwplayer.js