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.
我正在努力解决添加ontimeupdate="timeUpdate()"到视频标签(HTML5)的问题。我正在使用jQPlayer,它是 jQuery 的 HTML5 视频播放器插件。我似乎无法弄清楚如何做到这一点。您的帮助将不胜感激。
ontimeupdate="timeUpdate()"
谢谢
在 jQPlayer 的演示之后,您可以使用如下内容:
var videoElement = $('#video-element'), options = {}, // your options playerTest = videoElement.jQPlayer(options); videoElement.find('video').bind('timeupdate', function () { console.log('timeupdate', this.currentTime); });