window.onload = function(){
var music = document.getElementById("music");
var audio = document.getElementsByTagName("audio")[0];
music.onclick = function() {
if(audio.paused){
audio.play();
this.setAttribute("class","paly");
}else{
audio.pause();
this.setAttribute("class","");
};
};
};
这是js里面的代码,为什么cd点击停止以后不再转动了呢老师的可以呢?
第7行 this.setAttribute("class","paly"); 写错了应该是this.setAttribute("class","play"); paly => play
是的呢,这个问题我后来也发现了,谢谢。