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.
看起来 YouTube API 无法在视频播放到某个点后停止播放。它有办法在某个点启动它,但不能在某个点停止它。我想知道是否有解决方法?或者也许我在没有注意到的情况下瞥了一眼。
您可以使用 player.getCurrentTime() 对经过的时间进行一些重复轮询,然后当它到达您想要的点时,调用 player.stopVideo()。如果这有点太忙,您可以使用计时器,并且仅在经过一定时间后才开始轮询。