我試圖播放聲音,並且找到了適用於我的兩種方法。 哪個更好,爲什麼?添加一個「加載」事件監聽器是一個好主意嗎?使用HTML5和Javascript播放聲音的最佳方式
第一種方式:
$(document).ready(function() {
var audioElement = document.createElement('audio');
audioElement.setAttribute('src', 'sound.ogg');
audioElement.addEventListener("load", function(){
audioElement.play();
}, true);
audioElement.play();
});
方式二:
$(document).ready(function() {
audioElement = new Audio('sound.ogg');
audioElement.play();
});
在新的音頻()情況下,音頻的網絡來源如何? – vinnitu