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.
我创建了一个mediaelementjs用于多平台兼容性的视频播放器。除了 iPad2,一切正常。这些方法不适用于 iPad2 setMuted()。setCurrentTime()
mediaelementjs
setMuted()
setCurrentTime()
如果您有任何解决方案,请告诉我?
至于setCurrentTime()我在 iPad1 和 iPad2 上遇到过同样的问题。我无法完全回忆起我想出的解决方案,但据我所知,我动态创建了 mediaelement 并将其分配给全局变量player或任何你想要的。当我需要设置当前时间时,我只是做了:
player
player.setCurrentTime(1.250);
如果您发布一些代码,我们可能会为您提供更多帮助。