What Options Are There for Cross-Browser Compatible Audio?
问题 I'm using this function: function playSound(file) { MyAudio = new Audio(file); MyAudio.play(); } Unfortunately, I'm struggling to find a file type which will work in all browsers. Mp3 works in Chrome, Safari, IE but not FF and Opera, while .ogg files only seem to work in FF. Any suggestions as to a way around this? I presume there is no way of programmatically detecting which browser is being used and then playing the appropriate file type? Any advise/ideas appreciated. Thanks. 回答1: