我想通过调用 jquery 函数加载我的网站后播放 ogg 文件。我该怎么做?
<script>
$(window).load(function(){
// here i want to call this function to play my sound.
});
</script>
这样做
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>