跳到主要内容

InnerAudioContext.offSeeked(function listener)

功能描述

移除音频完成跳转的事件监听函数

参数

function listener

音频完成跳转事件的监听函数

示例代码

const listener = function (res) { console.log(res) }

InnerAudioContext.onSeeked(listener)
InnerAudioContext.offSeeked(listener) // 需传入与监听时相同的函数对象