woshilee

js播放音频文件

<!-- 信息提示音 -->
<SCRIPT type="text/javascript"> 
if(-1 != navigator.userAgent.indexOf("MSIE")) 
{ 
document.write(\' <OBJECT id="Player"\'); 
document.write(\' classid="clsid:6BF52A52-394A-11d3-B153-00C04F79FAA6"\'); 
document.write(\' width=0 height=0 > <param name="URL" value="msg.mp3" /> <param name="AutoStart" value="false" /> </OBJECT>\'); 
} 
else 
{ 
document.write(\' <OBJECT id="Player"\'); 
document.write(\' type="application/x-ms-wmp"\'); 
document.write(\' autostart="false" src= "msg.mp3" width=0 height=0> </OBJECT>\'); 
} 
</SCRIPT>

document.getElementById("Player").controls.play();

分类:

技术点:

相关文章:

  • 2021-12-03
  • 2021-12-28
  • 2021-12-18
  • 2021-11-02
  • 2021-05-25
  • 2021-09-04
  • 2021-07-21
  • 2021-12-02
猜你喜欢
  • 2022-02-19
  • 2021-10-15
  • 2021-10-02
  • 2021-12-16
  • 2021-12-18
  • 2021-08-15
相关资源
相似解决方案