求助大佬!需求是类似B站抖音这类视频软件,进入页面视频自动播放,是有声音的,目前代码如下: To view this video please enable JavaScript, and considerupgrading to a web browser that supports HTML5 video var options = { autoplay: true, aspectRatio: "16:9", }; var playerVideo = videojs("video_id", options); playerVideo.ready(function() { var promise = playerVideo.play(); if (promise !== undefined) { promise.then(function() { console.log(111111111111); }); }).catch(function(error) { console.log(2222222222); }) } })