2

我正在使用 VIDEO.JS,我需要找出哪个播放器 video.js 用于 Javascript 函数.. 示例

var myPlayer = videojs("the_player_id");
if (myPlayer.currentTechnology() == "flash") {
    console.log("its using the flash player");
}

我在 API 中找不到任何东西。

4

2 回答 2

4

在缩小的代码中,变量会被混淆,但在未缩小的版本中,您可以使用myPlayer.techName

于 2013-09-16T20:31:08.430 回答
0

但是,仍然可以在缩小的代码中访问该属性。相反,它是:

myPlayer.xa
于 2014-05-21T12:58:02.363 回答