jPlayer有一个no volume option,用于移动设备(等等)。我正在尝试找出如何检查当前播放器是否符合此设置?我们想添加一个类并更改播放器,如果它位于不支持此功能的设备上。
答案 0 :(得分:1)
我最终使用status
信息来确定这一点。作为一个(可怜的)例子:
// initialize the player
$('.player').jPlayer({...});
// check if it has volume controls
if ($('.player').data('jPlayer').status.noVolume) {
// does not have volume controls
}