1 つの Web サイトでいくつかの JW Player を使用しようとしています。実際には 48 個配置する必要がありますが、表示されているのは 1 つだけです。「コンテナ」パラメータと関係があると思います。
<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>
最初のコンテナの場合に「コンテナ」を他のものに変更すると、2番目のコンテナだけが表示されるため、コンテナがコンテンツを保持していると想定します(明らかに)。これを変更して、1 つのページで多くのビデオを再生できるようにするにはどうすればよいですか? 誰かがこの問題にも直面したと確信しています。どうもありがとう。