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 html5 音频播放器,我需要它在 20 秒时触发一个 php 脚本(以增加已经在数据库中播放的次数),但我不知道如何或在哪里创建事件或让它无缝触发脚本
谢谢你的帮助
您可以currentTime设置并设置一个变量来检查该事件之前是否已被触发。
currentTime
var $video, triggered; $video = $(videoID); $triggered = false; $video.on('timeupdate', function() { if (!triggered && Math.floor(this.currentTime) === 20) { // Do stuff triggered = true; } });