我正在尝试在一个网站上使用几个 JW 播放器。我实际上需要放置 48 个,但它只有一个可见。我认为它与“容器”参数有关。
<script type="text/javascript" src="http://video.captive-portal.com/jwplayer.js"></script>
<script type="text/javascript">
jwplayer("container").setup({
flashplayer: "http://video.captive-portal.com/player.swf",
file: "http://content.captive-portal.com/campaigns/sky/videos/1/1.mp4",
image: "http://content.captive-portal.com/campaigns/sky/videos/1/1.jpg",
width: 480,
height: 270
});
<script type="text/javascript" src="http://video.captive-portal.com/jwplayer.js"></script>
<script type="text/javascript">
jwplayer("container").setup({
flashplayer: "http://video.captive-portal.com/player.swf",
file: "http://content.captive-portal.com/campaigns/sky/videos/1/2.mp4",
image: "http://content.captive-portal.com/campaigns/sky/videos/1/2.jpg",
width: 480,
height: 270
});
</script>
如果我在第一个的情况下将“容器”更改为其他任何内容,它只会显示第二个,所以我假设容器包含内容(显然)。如何修改它以在一页上播放多个视频?我敢肯定有人也遇到过这个问题。非常感谢。