【发布时间】:2011-06-22 15:35:36
【问题描述】:
当嵌入视频在 iPad 浏览器中播放时,如何在 Javascript 中检索当前 hh:mm:ss 位置(可能还有播放器状态)?
【问题讨论】:
标签: ios ipad video html5-video
当嵌入视频在 iPad 浏览器中播放时,如何在 Javascript 中检索当前 hh:mm:ss 位置(可能还有播放器状态)?
【问题讨论】:
标签: ios ipad video html5-video
如果是在网页中,你可以这样做
var vid = document.getElementById('videoid');
var time = vid.currentTime;
如http://www.whatwg.org/specs/web-apps/current-work/multipage/the-iframe-element.html#htmlmediaelement中所见
【讨论】: