这段代码非常适合 crome 和 firefox .. 但在 IE8 中出错
if($('#soundcheck').is(':checked')){
//alert('checked');
var audio = document.createElement('audio');
document.body.appendChild(audio);
audio.src = system_base_url+'/sound/horn.wav';
audio.play();
}
IE8 说:对象不支持这个属性或方法,它指向:
audio.play();
有人对IE8有类似经验吗?
问候