ページの読み込み時にオーディオ ファイルを再生するようにクライアントの Web サイトをセットアップしようとしています (彼の要求に応じて、私にとっては好ましい機能ではありません)。簡単な 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>