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.
我正在尝试找到一种方法来创建一个播放媒体的按钮mediaelement.js。我试过了player.stop,然后player.play。但player.stop不可用。
mediaelement.js
player.stop
player.play
该文档指出:
HTML5 定义了“暂停”方法,但没有定义“停止”方法。“停止”方法仅用于支持 Flash RTMP 流式传输,因此您应在所有其他情况下使用“暂停”方法。
你不应该使用.stop(). setCurrentTime(0)如果您想从头开始播放相同的曲目,您可以使用。
.stop()
setCurrentTime(0)