html设置网站提示音有好几种方法,但是没一种方法能兼容所以浏览器。我选择了只支持ie的bgsound和支持其他浏览器的audio:
<bgsound id="bsd" src="" loop="false"> <audio controls="controls" id="audio_player" src="msg.wav" style="display:none;"></audio>
function SetSound(action){ var soundControl = document.getElementById("audio_player"); var bsdControl = document.getElementById("bsd"); if(action=="play"){ soundControl.play(); bsdControl.src="msg.wav"; } else if(action=="stop"){ soundControl.stop(); } }
还有其它的播放背景音乐的标签:embed