我正在尝试寻找一种方法来查看是否在firefox 66中启用了自动播放功能。有一项新政策,即视频不会自动播放。我正在尝试找到一种编码方法。
有什么想法或想法吗?我尝试搜索有关firefox 66的更多信息,但似乎没有成功
$(document).ready(function() {
HTMLMediaElement.autoplay = true | false;
var autoplay = HTMLMediaElement.autoplay;
if (BrowserDetect.browser === "Firefox" && autoplay == false) {
$('#firefox-autoplay-message').slideDown();
setTimeout(function() {
$('#firefox-autoplay-message').slideUp();
}, 900000);
}
});
这没有结果或检测不到