开头有很多问题
我有一个 javascript 函数可以播放我的声音。效果很好,简单又薄。
function Play(mp3Path)
{
$("#sound_").remove();
$('#soundEvent').html('<embed id="sound_" autostart="true" hidden="true"
src="' + mp3Path + '" type="audio/mpeg" />');
//Line above formatted for readability
}
当我执行上述函数时,我在 chrome 中收到以下警告。
Resource interpreted as Document but transferred with MIME type audio/mpeg
我的修复尝试涉及将 type 属性添加到 embed 元素。
有没有办法在不对代码进行重大更改或转到 HTML5/flash的情况下摆脱该警告?