您好我提出了一个类似的问题(不一样),关于如何在点击其他按钮时停止JWplayer。它工作得很好,使用
onclick='jwplayer().stop()'
Stop JWPlayer when hidden the div with the player
无论如何,当JWplayer加载到iframe中时,此解决方案无效。
我认为这需要一些额外的java,我再也不知道了。我搜索并找到了这个.. http://www.dyn-web.com/tutorials/iframes/refs/
但我不知道如何使用它。
这是我正在使用的代码(对不起id,但我必须确保它们不会发生冲突)
$("#prevvv").click(function() {
$("#mvideoo").contents().find("#mvideoo").jwplayer().stop();
});
$("#nexttt").click(function() {
$("#mvideoo").contents().find("#mvideoo").jwplayer().stop();
});
这不起作用吗?