0
我想在音頻完成播放時切換功能。當音頻停止播放時,什麼是jQuery方法?
這是我試過的代碼(沒有運氣):
$(function(){
if ($('#audio').get(0).stopped == true) {
$('div#switch').toggle();
}
});
我想在音頻完成播放時切換功能。當音頻停止播放時,什麼是jQuery方法?
這是我試過的代碼(沒有運氣):
$(function(){
if ($('#audio').get(0).stopped == true) {
$('div#switch').toggle();
}
});
您正在使用哪種音頻播放器? – sathishkumar
HTML5 audio: – Tony