Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在全屏模式下播放视频时捕获搜索事件?
我正在运行单独的音频和视频流,并且在搜索位置更改时我需要同步音频和视频。
您可以使用timeupdate事件:
video.addEventListener("timeupdate", function(){ //do some magic here… })