加载网站后播放ogg声音

时间:2013-06-01 04:35:23

标签: jquery html5

我想在通过调用jquery函数加载我的网站后播放ogg文件。我该怎么办?

<script>
  $(window).load(function(){

      // here i want to call this function to play my sound.

  });
</script>

1 个答案:

答案 0 :(得分:0)

这样做

    function play()            {
    var audio=document.getElementById('audio1');
    audio.play();
                   }
           $(window).load(function(){
            play();
                                   });
HTML中的

<audio id="audio1" style="display:none;">
<source src="Audio.mp3" type="audio/mpeg">
<source src="Audio.ogg" type="audio/ogg">
<embed height="50" width="100" src="Audio.mp3">
</audio>