setInterval('playSound()',2000);
function playSound(){
var sound=new Audio('song.mp3');
sound.play();
}
这适用于 chrome,但不适用于 ipad 应用程序。