为什么会出现Uncaught Error: INDEX_SIZE_ERR: DOM Exception 1
的错误?
$(".S").html('<audio autoplay="autoplay"><source src="R/sopen.mp3"type="audio/mp3" /></audio>');
audio.play();
audio.volume=0;
audio.addEventListener('ended',function(){
this.currentTime=0;
this.play();
},false);
vol = 0;
var fadein=setInterval(function(){
if(vol<1){
vol=vol + 0.1;
audio.volume = vol;
}else{
audio.removeEventListener('ended');
clearInterval(fadein);
}
},100);
我似乎无法破解它,这个错误意味着什么?
这似乎发生在这里:audio.volume=vol;
这是我见过的最不明确的错误!一遍又一遍地试过谷歌,没有运气。
感谢。