無論我做什麼,我都無法在Firefox或IE或Chrome中播放聲音。使用JavaScript播放聲音
<html>
<head>
<script type="text/javascript">
function play()
{
var embed = document.createElement('object');
embed.setAttribute('src', 'c:\\test.wav');
embed.setAttribute('hidden', true);
embed.setAttribute('autostart', true);
embed.setAttribute('enablejavascript', true);
document.childNodes[0].appendChild(embed);
}
// -->
</script>
</head>
<body onload="play();">
</body>
</html>
**請不要**有背景音樂播放當頁面加載時自動。這是一個網頁最煩人的事情之一(見http://www.seomoz.org/blog/how-to-convince-a-client-their-site-doesnt-need-music)。至少可以選擇將其靜音。 – 2010-08-04 05:33:31
你的問題之一是'\ t'是選項卡。 – 2010-08-04 05:33:40
修正了\ t的事情,但仍然沒有運氣。 – FaNIX 2010-08-04 05:39:35