我正在尝试设置客户的网站以在页面加载时播放音频文件(根据他的要求,这不是我的首选功能)。我使用了一些简单的 JavaScript,但页面加载时没有播放音频。任何想法为什么会发生这种情况?
<head>
<!--other metadata up here-->
<script>
function EvalSound(soundobj) {
var thissound = document.getElementById(soundobj);
thissound.Play();
}
</script>
<embed src="scripts/audio.wav" autostart=true width=1 height=1 id="audio"
enablejavascript="true">
</head>
<body>
<div id="container" onload="EvalSound('audio')">
<!--rest of page>
</body>