1.声音播放的默认设备不是你的声卡设备。可以进“控制面板”--“声音和音频设备”在弹出的对话框中选择语声,可以查看你的声音播放的默认设备是不是正常,也可以测试各个音频设备。
2.检查你播放程序的解码器是否正常。很怀疑你是安装了某个播放软件,解码器不兼容导致的无声,比如说Realplay11的cook.dll就会造成KMPlayer播放器无声,不知道你,建议你删除不必要的程序,保留一个音乐播放器一个视频播放器比较好。
3.声卡驱动被破坏,建议你进安全模式删除驱动后,在重新安装原装驱动.
1、JS播放音乐需要区分浏览器,来使用不用的对象来播放音乐
2、在播放控制上要有【播放】和【停止】来控制音乐的播放
基于以上思路,代码如下:
<SCRIPT type="text/javascript">if(-1 != navigator.userAgent.indexOf("MSIE"))
{
//不是微软IE浏览器,则调用Flash来播放音乐
document.write(' <OBJECT id="Player"')
document.write(' classid="clsid:6BF52A52-394A-11d3-B153-00C04F79FAA6"')
document.write(' width=0 height=0 > <param name="URL" value="a.mp3" /> <param name="AutoStart" value="false" /> </OBJECT>')
}
else
{
//是微软IE浏览器,则调用微软的Player对象来直接播放音乐
document.write(' <OBJECT id="Player"')
document.write(' type="application/x-ms-wmp"')
document.write(' autostart="false" src= "a.mp3" width=0 height=0> </OBJECT>')
}
</SCRIPT>
<input type=button value="播放" onclick="Player.controls.play()" />
<input type=button value="停止" onclick="Player.controls.stop()" />
可以用<bgsound>标签。
<html>
<head>
<script>
function init(){
if(判断条件有消息){
document.getElementById("sound").src="sound.wav"
或者document.all.sound.src="sound.wav"
或者document.getElementsByName("*").sound.src="sound.wav"
}
}
</script>
</head>
<body>
<bgsound id="sound">
</body>
</html>
这样就可以播放了默认情况下不会循环。如果使用<embed>也可以使用上面的想法
<embed id="sound" src="msg.wav" width="42" height="35" hidden="true" autostart="false"></embed>
如果是ie就直接写document.getElementById("sound").play()
如果是mozilla-firefox就就把document.getElementById("sound").autostart=true