1

我正在使用 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/`
4

2 回答 2

1

谢谢

我对 jsfiddle 真的很陌生

我不知道为什么,但 JS 部分中的功能不起作用

所以我使用脚本标签将它们放在html页面中,现在它正在工作

 can some one tell why is that so ....i have included my link which is  not working link 

 http://jsfiddle.net/hiteshbhilai2010/f6ufe/17/

 this is my link for new code which is working
** http://jsfiddle.net/hiteshbhilai2010/f6ufe/30/**

感谢帮助 ..:)

于 2013-05-16T07:39:00.723 回答
0

我刚刚去了两个 jsfille 链接,它们都对我有用吗?

于 2013-05-28T04:25:13.797 回答