打开这个视频需要什么插件?

打开这个视频需要什么插件?

我是 Ubuntu 新手,我真的非常喜欢它,但打开它时遇到了一个问题这个视频对于讲座,我希望你能帮助我需要什么插件,因为我尝试过很多次!

答案1

这不是插件,这是编码错误。您可以使用 Firefox 检查元素自行检查。

这是控制按钮的代码(开始、暂停和停止)

<map name="map1">

    <area shape="rect" coords="0,0,45,26" href="#" onclick="lightStop()">

    <area shape="rect" coords="47,0,90,26" href="#" onclick="lightPause()">

    <area shape="rect" coords="92,0,135,26" href="#" onclick="lightPlay()">

    </map>

而如果你检查函数 lightStop() 或 lightPause() 或 lightPlay() 你会发现错误。

function lightPause() {
  swapImage('document.controls','document.controls','../common/controlspause.gif','swapImage1');
  document.presentation.DoPause();
  document.swapImgData[1]=document.controls.src;
      return false;


}

你会注意到一个错误

Uncaught TypeError: undefined is not a function

简单地说,您不需要插件,这是网站中的一些编码错误。

相关内容