我正在尝试按照本教程制作视频按钮控件,一切正常,因为我正在寻找按钮。下面的代码在Safari和Opera上运行正常,但Firefox和Chrome没有做任何事情。
function initVideoDirectionStepButtons() {
var _stepSize = 10.0;
/* Add Code For Stepping Backward */
$('.rewind_button a').each(function() {
/*This code finds the video element and binds it to a click event.*/
var $_video=findVideoForElement(this);
$(this).click(function(e) {
e.preventDefault();
$_video.each(function(index, _video) {
_video.currentTime=_video.currentTime-_stepSize;
});
});
});
这只是代码的开头。它只是在函数关闭之前为fast_forward重复相同的操作。然后在html准备就绪时调用它。
Firefox和Chrome在控制台中没有显示任何错误,它只是做任何事情而不是safari它会反复前进。我环顾四周,看到很多其他的例子也是如此,它适用于他们。设置currentTime在firefox和chrome中无效,还是不支持webm格式?