音樂暫停不了
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","play");??
? ? ? ? ? ? }
? ? ? ? else
? ? ? ? {
? ? ? ? ? ?audio.play();
? ? ? ? ? this.setAttribute("class","play");?
? ? ? ? ? ? };
? ? ? ? };
? ? };/
這個代碼為什么音樂暫停不了呀,哪位大神看看。