2012-09-17 70 views
1

我試圖獲取HTML音頻標籤的當前時間。 以下代碼適用於Firefox,但不適用於Google Chrome。
我的代碼有什麼問題?Chrome上的音頻jQuery和currentTime

var audio = $('#audio'), 
    totalTime = audio.attr('data-duration'), 
    startTime = Math.floor(Math.random() * totalTime); 
audio[0].currentTime = startTime; // No Chrome support at this point 
+0

HTML5規範在瀏覽器之間尚未完全達成一致,這也是它的另一個例子。數據持續時間不是

回答