functionEvalSound(soundobj){varthissound=document.getElementById(soundobj);thissound.currentTime=0;thissound.Play();}functionStopSound(soundobj){varthissound=document.getElementById(soundobj);thissound.Stop();}这是我播放音频文件的代码,onmouseover="EvalSound('sound1')"onmouseout="StopSound('sound1')"它目前正在悬停,