我正在使用 Jwplayer 播放我的视频。所以我使用 JS fiddle 来测试 JWplayer API
我按照 jsfiddle 中的说明包含了 JS 文件。视频效果很好,但我想用一个按钮而不是播放器控件来暂停/播放视频。
但它似乎不起作用我无法理解这个问题
帮帮我
<body>
<div id='my-video'></div><br>
<div id="content" style=" text-align: center;">
<button name='play' id='play' value='play' onclick='play();'>Play</button>
<button name='pause' id='pause' value='pause' onclick='pause();' style='display: none;'>Pause</button>
</div>
</body>
<script>
jwplayer('my-video').setup({
file: 'http://content.bitsontherun.com/videos/lWMJeVvV-364767.mp4',
width: '640',
height: '360'
});
function play() {
jwplayer().play();
document.getElementById('play').style.display = 'none';
document.getElementById('pause').style.display = 'inline-block';
}
function pause() {
jwplayer().pause();
document.getElementById('pause').style.display = 'none';
document.getElementById('play').style.display = 'inline-block';
}
</script>
谢谢
Here is the [DEMO LINK][1]`http://jsfiddle.net/hiteshbhilai2010/f6ufe/17/`