使用Ajax方法从服务器获取音频资源并通过设置src属性加载音频。例如:
var xhr = new XMLHttpRequest(); xhr.open('GET', 'https://www.phpernote.com/audio.mp3', true); xhr.responseType = 'blob'; xhr.onload = function(){ if(this.status == 200){ var audio = new Audio(URL.createObjectURL(this.response)); audio.play(); } }; xhr.send();