唱片转动问题
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点击停止以后不再转动了呢老师的可以呢?