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();
    }
    
}

blob.png

msg.wav

还有其它的播放背景音乐的标签:embed


最后修改:2014 年 07 月 09 日
如果觉得我的文章对你有用,请随意赞赏